OFFSET
0,14
COMMENTS
Number of compositions (ordered partitions) of n into squares > 1.
LINKS
FORMULA
G.f.: 1/(1 - Sum_{k>=2} x^(k^2)).
EXAMPLE
a(17) = 3 because we have [9, 4, 4], [4, 9, 4] and [4, 4, 9].
MATHEMATICA
nmax = 75; CoefficientList[Series[1/(1 - Sum[x^k^2, {k, 2, nmax}]), {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 05 2017
STATUS
approved