login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A347572
Number of partitions of n into 5 or more distinct parts.
5
1, 1, 2, 3, 5, 7, 11, 14, 20, 26, 35, 44, 58, 72, 91, 112, 139, 168, 206, 246, 297, 353, 420, 494, 584, 682, 798, 927, 1077, 1243, 1437, 1649, 1894, 2166, 2475, 2817, 3207, 3636, 4121, 4658, 5261, 5926, 6673, 7494, 8412, 9425, 10550, 11788, 13166, 14677, 16352
OFFSET
15,3
FORMULA
G.f.: Sum_{k>=5} x^(k*(k + 1)/2) / Product_{j=1..k} (1 - x^j).
MATHEMATICA
nmax = 65; CoefficientList[Series[Sum[x^(k (k + 1)/2)/Product[(1 - x^j), {j, 1, k}], {k, 5, nmax}], {x, 0, nmax}], x] // Drop[#, 15] &
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 07 2021
STATUS
approved