login
A337990
Number of compositions (ordered partitions) of n^n into powers of n.
2
1, 1, 6, 26426, 773527571233557154337704151068262296
OFFSET
0,3
COMMENTS
The next term is too large to include.
FORMULA
a(n) = [x^(n^n)] 1 / (1 - Sum_{k>=0} x^(n^k)), for n > 1.
EXAMPLE
a(2) = 6 because 2^2 = 4 and we have [4], [2, 2], [2, 1, 1] (3 permutations), [1, 1, 1, 1] and 1 + 1 + 3 + 1 = 6.
MATHEMATICA
Join[{1, 1}, Table[SeriesCoefficient[1/(1 - Sum[x^(n^k), {k, 0, n}]), {x, 0, n^n}], {n, 2, 4}]]
CROSSREFS
Sequence in context: A283887 A241650 A368064 * A143780 A225716 A159429
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 06 2020
STATUS
approved