login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A284830
Expansion of Sum_{i>=1} x^(i^2)/(1 - x^(i^2)) * Product_{j>=i} 1/(1 - x^(j^2)).
1
1, 2, 3, 5, 6, 8, 10, 14, 16, 19, 23, 30, 33, 38, 44, 55, 60, 69, 77, 93, 102, 113, 126, 148, 162, 177, 198, 226, 246, 268, 293, 334, 361, 392, 424, 480, 516, 556, 601, 668, 721, 773, 835, 917, 990, 1054, 1129, 1239, 1325, 1415, 1508, 1649, 1757, 1875, 1990, 2157, 2303, 2441, 2595, 2796
OFFSET
1,2
COMMENTS
Total number of smallest parts in all partitions of n into squares (A000290).
FORMULA
G.f.: Sum_{i>=1} x^(i^2)/(1 - x^(i^2)) * Product_{j>=i} 1/(1 - x^(j^2)).
EXAMPLE
a(9) = 16 because we have [9], [4, 4, 1], [4, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1] and 1 + 1 + 5 + 9 = 16.
MATHEMATICA
nmax = 60; Rest[CoefficientList[Series[Sum[x^i^2/(1 - x^i^2) Product[1/(1 - x^j^2), {j, i, nmax}], {i, 1, nmax}], {x, 0, nmax}], x]]
PROG
(PARI) x='x+O('x^61); Vec(sum(i=1, 60, x^i^2/(1 - x^i^2) * prod(j=i, 60, 1/(1 - x^j^2)))) \\ Indranil Ghosh, Apr 04 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 03 2017
STATUS
approved