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”).

A161091
Number of partitions of n into squares where every part appears at least 3 times.
1
0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 2, 2, 3, 4, 3, 3, 4, 5, 4, 4, 6, 6, 5, 6, 7, 8, 7, 7, 8, 10, 8, 8, 11, 11, 10, 11, 13, 13, 13, 13, 15, 18, 15, 16, 20, 21, 19, 21, 23, 24, 24, 24, 27, 30, 28, 28, 33, 36, 33, 35, 39, 42, 41, 42, 45, 49, 47, 48, 55, 56, 54, 58, 63, 67, 65, 66, 72, 78
OFFSET
1,12
LINKS
FORMULA
G.f.: Product_{j>=1} (1 + x^(3j^2)/(1-x^(j^2))). - Emeric Deutsch, Jun 24 2009
EXAMPLE
a(23)=4 because we have (4^5)(1^3), (4^4)(1^7), (4^3)(1^11), and (1^23). - Emeric Deutsch, Jun 24 2009
MAPLE
g := product(1+x^(3*j^2)/(1-x^(j^2)), j = 1 .. 20): gser := series(g, x = 0, 90): seq(coeff(gser, x, n), n = 2 .. 84); # Emeric Deutsch, Jun 24 2009
CROSSREFS
Sequence in context: A334591 A177962 A246552 * A027347 A352131 A035438
KEYWORD
nonn
AUTHOR
R. H. Hardin, Jun 02 2009
STATUS
approved