OFFSET
0,7
LINKS
Fausto A. C. Cariboni, Table of n, a(n) for n = 0..350
EXAMPLE
The a(20) = 14 integer partitions:
(20)
(10,10)
(14,6)
(18,1,1)
(12,6,1,1)
(6,6,6,1,1)
(10,6,1,1,1,1)
(15,1,1,1,1,1)
(14,1,1,1,1,1,1)
(12,1,1,1,1,1,1,1,1)
(6,6,1,1,1,1,1,1,1,1)
(10,1,1,1,1,1,1,1,1,1,1)
(6,1,1,1,1,1,1,1,1,1,1,1,1,1,1)
(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)
MATHEMATICA
nn=100;
ser=Product[If[PrimePowerQ[n], 1, 1/(1-x^n)], {n, nn}];
CoefficientList[Series[ser, {x, 0, nn}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 11 2018
STATUS
approved