login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number of partitions of n into cubes of n kinds.
LINKS
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
Sequence in context: A110556 A001700 A088218 * A072266 A085282 A149036
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 17 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)