OFFSET
0,5
COMMENTS
Number of partitions of n into distinct squares, where k^2 different parts of size k^2 are available (1a, 4a, 4b, 4c, 4d, ...).
LINKS
FORMULA
a(n) ~ exp(5 * 2^(-9/5) * 3^(-3/5) * (9-4*sqrt(2))^(1/5) * Pi^(1/5) * Zeta(5/2)^(2/5) * n^(3/5)) * 3^(1/5) * (2*sqrt(2)-1)^(1/5) * Zeta(5/2)^(1/5) / (2^(9/10) * sqrt(5) * Pi^(2/5) * n^(7/10)). - Vaclav Kotesovec, Aug 29 2017
EXAMPLE
a(8) = 6 because we have [4a, 4b], [4a, 4c], [4a, 4d], [4b, 4c], [4b, 4d] and [4c, 4d].
MATHEMATICA
nmax = 100; CoefficientList[Series[Product[(1 + x^k^2)^k^2, {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 100; s = 1 + x; Do[s *= Sum[Binomial[k^2, j]*x^(j*k^2), {j, 0, Floor[nmax/k^2] + 1}]; s = Select[Expand[s], Exponent[#, x] <= nmax &]; , {k, 2, nmax}]; CoefficientList[s, x] (* Vaclav Kotesovec, Aug 28 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 28 2017
STATUS
approved