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!)
A298934 Number of partitions of n^2 into distinct cubes. 4
1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 3, 3, 1, 0, 3, 0, 2, 4, 0, 0, 1, 0, 0, 2, 3, 1, 1, 0, 6, 3, 6, 1, 6, 0, 3, 9, 0, 6, 6, 7, 0, 10, 3, 3, 6, 0, 8, 6, 13, 2, 10, 9, 10, 19, 2, 14, 21, 7, 2, 25 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,16
LINKS
FORMULA
a(n) = [x^(n^2)] Product_{k>=1} (1 + x^(k^3)).
a(n) = A279329(A000290(n)).
EXAMPLE
a(15) = 2 because we have [216, 8, 1] and [125, 64, 27, 8, 1].
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1,
`if`(n>i^2*(i+1)^2/4, 0, b(n, i-1)+
`if`(i^3>n, 0, b(n-i^3, i-1))))
end:
a:= n-> b(n^2, n):
seq(a(n), n=0..100); # Alois P. Heinz, Jan 29 2018
MATHEMATICA
Table[SeriesCoefficient[Product[1 + x^k^3, {k, 1, Floor[n^(2/3) + 1]}], {x, 0, n^2}], {n, 0, 84}]
CROSSREFS
Sequence in context: A239927 A069846 A239657 * A309061 A289618 A161520
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 29 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 March 18 21:02 EDT 2024. Contains 370951 sequences. (Running on oeis4.)