OFFSET
0,3
COMMENTS
Number of compositions (ordered partitions) of n into squares of n kinds.
LINKS
FORMULA
a(n) = [x^n] 1/(1 - n*Sum_{k>=1} x^(k^2)).
a(n) ~ n^n * (1 + 1/n^2 - 3/n^3 + 1/(2*n^4) - 13/(2*n^5) + 127/(6*n^6) - 4/n^7 + 335/(8*n^8) - 665/(4*n^9) + 337/(15*n^10) + ...). - Vaclav Kotesovec, Mar 19 2018
MATHEMATICA
Table[SeriesCoefficient[1/(1 + (1/2) n (1 - EllipticTheta[3, 0, x])), {x, 0, n}], {n, 0, 20}]
Table[SeriesCoefficient[1/(1 - n Sum[x^k^2, {k, 1, n}]), {x, 0, n}], {n, 0, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 18 2018
STATUS
approved