login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A316231 Expansion of Product_{k>=1} 1/(1 + q(k)*x^k), where q(k) = number of partitions of k into distinct parts (A000009). 1
1, -1, 0, -2, 1, -2, 3, -3, 6, -8, 14, -10, 28, -26, 41, -73, 90, -112, 155, -221, 288, -501, 560, -799, 1153, -1610, 1953, -3095, 4073, -5224, 7295, -9536, 13536, -18402, 24757, -32936, 48714, -60790, 82101, -113247, 153330, -201522, 275713, -367041, 492991 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Partition Function Q
FORMULA
G.f.: exp(Sum_{k>=1} Sum_{j>=1} (-1)^k*q(j)^k*x^(j*k)/k).
MATHEMATICA
nmax = 44; CoefficientList[Series[Product[1/(1 + PartitionsQ[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 44; CoefficientList[Series[Exp[Sum[Sum[(-1)^k PartitionsQ[j]^k x^(j k)/k, {j, 1, nmax}], {k, 1, nmax}]], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d (-PartitionsQ[d])^(k/d), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 44}]
CROSSREFS
Sequence in context: A109266 A022876 A242692 * A014781 A214500 A066016
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jun 27 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)