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!)
A317911 Expansion of Product_{k>=2} 1/(1 - x^k)^p(k), where p(k) = number of partitions of k (A000041). 1
1, 0, 2, 3, 8, 13, 31, 53, 112, 201, 393, 710, 1343, 2409, 4431, 7912, 14255, 25223, 44787, 78519, 137700, 239347, 415343, 716001, 1231326, 2106287, 3593141, 6102679, 10335269, 17437476, 29337139, 49192762, 82261930, 137148782, 228061165, 378198633, 625623318, 1032301633 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
First differences of A001970.
LINKS
FORMULA
G.f.: exp(Sum_{j>=1} Sum_{k>=2} p(k)*x^(j*k)/j).
MAPLE
with(numtheory): with(combinat):
b:= proc(n) option remember; `if`(n=0, 1, add(add(d*
numbpart(d), d=divisors(j))*b(n-j), j=1..n)/n)
end:
a:= n-> b(n)-b(n-1):
seq(a(n), n=0..40); # Alois P. Heinz, Aug 10 2018
MATHEMATICA
nmax = 37; CoefficientList[Series[Product[1/(1 - x^k)^PartitionsP[k], {k, 2, nmax}], {x, 0, nmax}], x]
nmax = 37; CoefficientList[Series[Exp[Sum[Sum[PartitionsP[k] x^(j k)/j, {k, 2, nmax}], {j, 1, nmax}]], {x, 0, nmax}], x]
b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d PartitionsP[d], {d, Divisors[k]}] b[n - k], {k, 1, n}]/n]; Differences[Table[b[n], {n, -1, 37}]]
CROSSREFS
Sequence in context: A113954 A191393 A025082 * A151889 A366020 A294151
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 10 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 24 06:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)