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

A304785
Expansion of Product_{k>=1} (1 - p(k)*x^k), where p(k) = number of partitions of k (A000041).
2
1, -1, -2, -1, -2, 4, 0, 15, 7, 17, 22, 26, -79, -2, -12, -392, -250, -392, -443, -640, -404, -795, 5106, 1147, 3304, 4542, 32330, 21001, 23372, 21015, 14496, 16165, -17213, 51296, -231330, -890169, -492310, -755449, -1648273, 131600, -6308274, -2160440, -4410945, 1593319
OFFSET
0,3
COMMENTS
Convolution inverse of A063834.
FORMULA
G.f.: Product_{k>=1} (1 - A000041(k)*x^k).
MATHEMATICA
nmax = 43; CoefficientList[Series[Product[(1 - PartitionsP[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[-Sum[d PartitionsP[d]^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 43}]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 18 2018
STATUS
approved