OFFSET
0,5
COMMENTS
Sum of products of terms in all partitions of n into distinct squares (A000290).
LINKS
FORMULA
G.f.: Product_{k>=1} (1 + k^2*x^(k^2)).
EXAMPLE
a(41) = 544 because we have [36, 4, 1], [25, 16], 36*4*1 = 144, 25*16 = 400 and 144 + 400 = 544.
MATHEMATICA
nmax = 73; CoefficientList[Series[Product[1 + k^2 x^k^2, {k, 1, nmax}], {x, 0, nmax}], x]
PROG
(PARI) Vec(prod(k=1, 73, (1 + k^2*x^(k^2))) + O(x^73)) \\ Indranil Ghosh, Mar 15 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 23 2017
STATUS
approved