Misha Lavrov <
mish...@gmail.com> writes:
>
> Table[SortBy[Range[2n-1], RomanNumeral][[n]], {n, 100}]
When calculating terms one by one, an expression inside an
array-making is not good for re-use. Function a[n] = something
is far better. Can call it for any desired n and combinations.
(Less of an issue in this case since finite and limited.)
The converse would be that if say making terms by inserting
new two elements, then that would certainly be array-making.
That comes up in bigger or harder problems where there's not
much good way except for making a block of initial terms.