The short answer is that not only is static useful, it is pretty well always going to be desired.
First, note that static and constexpr are completely independent of each other. static defines the object's lifetime during execution; constexpr specifies that the object should be available during compilation. Compilation and execution are disjoint and discontiguous, both in time and space. So once the program is compiled, constexpr is no longer relevant.
Everything declared constexpr is implicitly const but const and static are almost orthogonal (except for the interaction with static const integers.)
The C++ object model (§1.9) requires that all objects other than bit-fields occupy at least one byte of memory and have addresses; furthermore all such objects observable in a program at a given moment must have distinct addresses (paragraph 6). This does not quite require the compiler to create a new array on the stack for every invocation of a function with a local non-static const array, because the compiler could take refuge in the as-if principle provided it can prove that no other such object can be observed.
That's not going to be easy to prove, unfortunately, unless the function is trivial (for example, it does not call any other function whose body is not visible within the translation unit) because arrays, more or less by definition, are addresses. So in most cases, the non-static const(expr) array will have to be recreated on the stack at every invocation.
On the other hand, a local static const object is shared by all observers, and furthermore may be initialized even if the function it is defined in is never called, none of the above applies, and a compiler is free to not only generate a single instance of it; it is free to generate a single instance of it in read-only storage.
So you should definitely use static constexpr in your example.
Finally, note that unless a constexpr declared object is either ODR-used or declared static, the compiler is free to not include it at all. That's pretty useful, because it allows the use of compile-time temporary constexpr arrays without polluting the compiled program with unnecessary bytes. In that case, you would clearly not want to use static, since static is likely to force the object to exist at runtime.
constexprdoesn't guarantee compile time anything, the compiler is free to evaluateconstexprstuff at runtime. It's only forced to evaluate something at compile time if you use that something in contexts where it is required to be known at compile time. – Praetorian Dec 13 '12 at 18:38staticwill guarantee not just that it's at compile time, but that it's stored only with the compile time constants. I think withoutstaticit would theoretically conform to push the (huge) array onto the stack at each invocation of the function. – Andrew Lazarus Dec 13 '12 at 18:57