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”).

A347547
Number of partitions of n into 10 or more parts.
4
1, 2, 4, 7, 12, 19, 30, 45, 67, 97, 139, 194, 270, 368, 499, 667, 887, 1165, 1524, 1973, 2544, 3253, 4143, 5239, 6602, 8268, 10320, 12813, 15859, 19537, 24000, 29359, 35820, 43541, 52795, 63803, 76929, 92476, 110926, 132694, 158414, 188649, 224231, 265916, 314793
OFFSET
10,2
FORMULA
G.f.: Sum_{k>=10} x^k / Product_{j=1..k} (1 - x^j).
MATHEMATICA
nmax = 54; CoefficientList[Series[Sum[x^k/Product[(1 - x^j), {j, 1, k}], {k, 10, nmax}], {x, 0, nmax}], x] // Drop[#, 10] &
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 06 2021
STATUS
approved