OFFSET
0,9
COMMENTS
Number of partitions of n such that the number of parts is a cube.
Also number of partitions of n such that the largest part is a cube.
EXAMPLE
a(10) = 3 because we have [10], [3, 1, 1, 1, 1, 1, 1, 1] and [2, 2, 1, 1, 1, 1, 1, 1] (see the first comment) or [8, 2], [8, 1, 1] and [1, 1, 1, 1, 1, 1, 1, 1, 1, 1] (see the second comment).
MATHEMATICA
nmax = 53; CoefficientList[Series[Sum[x^(k^3)/Product[1 - x^j, {j, 1, k^3}], {k, 0, Floor[nmax^(1/3)] + 1}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 05 2020
STATUS
approved