Yes, they are semantically equivalent.
List-initialization (8.5.4) on an aggregate (8.5.1, e.g. an array) performs aggregate initialization (8.5.4p3b1). Aggregate initialization does not care whether the syntactic form is that of direct-initialization or copy-initialization; the rules of aggregate initialization apply identically in either case. In particular, the members of the aggregate are always copy-initialized from the corresponding clause of the initializer list.
There is an exception, which almost but not quite applies in your case; where there are insufficient elements to initialize all members of the aggregate, the standard is unclear on how to initialize the remaining members; they are list-initialized from {} (the empty list-initializer) but it is not specified whether they are copy-list-initialized or direct-list-initialized, or whether this depends on the original list-initialization (see comments); in fact, clang and gcc differ on their behaviour in this corner case. However, this is irrelevant in your case, since the aggregate member type is int, and for nonclass types list-initialization from {} invokes value-initialization i.e. zero-initialization, which is direct regardless of the syntactic form (i.e., int i{}; and int i = {}; are semantically identical).
There are a few reasons to prefer the = (copy-initialization) syntax: first, it is the form used by the standard in almost all examples (the exceptions being the last two examples in 8.5.4p3, where one demonstrates an error in narrowing conversion and the other demonstrates initialization from an empty initializer-list). Also, as you have said, it is more expressive; I also find that when list-initializing an aggregate, the copy-initialization syntax better reflects the fact that the elements of the aggregate are themselves copy-initialized.
Finally, the syntax without = is necessary in one case: where the object is a non-aggregate class type with an explicit constructor. As such, the direct-list-initialization syntax should be reserved for that case.