The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A319109 Expansion of Product_{k>=1} 1/(1 + x^k)^(k-1). 0
1, 0, -1, -2, -2, -2, 0, 2, 7, 8, 12, 10, 9, -2, -10, -32, -40, -62, -62, -70, -37, -20, 57, 106, 224, 272, 388, 376, 431, 272, 192, -184, -414, -1012, -1321, -2020, -2157, -2700, -2318, -2352, -1014, -272, 2280, 3798, 7464, 9200, 13257, 13958, 17098, 14846, 15266 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Convolution of A000009 and A255528.
Convolution inverse of A052812.
LINKS
FORMULA
G.f.: exp(Sum_{k>=1} (-1)^k*x^(2*k)/(k*(1 - x^k)^2)).
MAPLE
a:=series(mul(1/(1+x^k)^(k-1), k=1..100), x=0, 51): seq(coeff(a, x, n), n=0..50); # Paolo P. Lava, Apr 02 2019
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[1/(1 + x^k)^(k - 1), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 50; CoefficientList[Series[Exp[Sum[(-1)^k x^(2 k)/(k (1 - x^k)^2), {k, 1, nmax}]], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d) d (d - 1), {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 50}]
CROSSREFS
Sequence in context: A230291 A338434 A059288 * A217670 A243310 A197727
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Sep 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 May 14 17:26 EDT 2024. Contains 372533 sequences. (Running on oeis4.)