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

A300975
a(n) = [x^n] Product_{k>=1} 1/(1 - x^(k^3))^n.
4
1, 1, 3, 10, 35, 126, 462, 1716, 6443, 24391, 92928, 355862, 1368458, 5280744, 20438148, 79302960, 308385355, 1201536286, 4689450021, 18330233110, 71747534460, 281177705490, 1103163479190, 4332522733560, 17031238725410, 67007449610751, 263841039245280, 1039628691988795
OFFSET
0,3
COMMENTS
Number of partitions of n into cubes of n kinds.
FORMULA
a(n) ~ c * d^n / sqrt(n), where d = 4.0147940395164236614815683662796167488... and c = 0.2726202310726337579308600184572222... - Vaclav Kotesovec, Mar 23 2018
MAPLE
a:= proc(m) option remember; local b; b:= proc(n, i)
option remember; `if`(n=0, 1, `if`(i<1, 0, add(
binomial(m+j-1, j)*b(n-i^3*j, i-1), j=0..n/i^3)))
end: b(n, iroot(n, 3))
end:
seq(a(n), n=0..30); # Alois P. Heinz, Mar 17 2018
MATHEMATICA
Table[SeriesCoefficient[Product[1/(1 - x^k^3)^n, {k, 1, n}], {x, 0, n}], {n, 0, 27}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 17 2018
STATUS
approved