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!)
A324158 Expansion of Sum_{k>=1} x^k / (1 - k * x^k)^k. 13
1, 2, 2, 6, 2, 23, 2, 50, 56, 107, 2, 660, 2, 499, 1592, 2370, 2, 8246, 2, 18557, 21786, 11387, 2, 175198, 43752, 53419, 298892, 487762, 2, 1891098, 2, 2552066, 3905222, 1114403, 3785462, 29081597, 2, 4981099, 48376512, 95510772, 2, 218764940, 2, 346411232, 770590352 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} (n/d)^(d-1) * binomial(n/d+d-2,d-1).
a(p) = 2, where p is prime.
MATHEMATICA
nmax = 45; CoefficientList[Series[Sum[x^k/(1 - k x^k)^k, {k, 1, nmax}], {x, 0, nmax}], x] // Rest
Table[Sum[(n/d)^(d - 1) Binomial[n/d + d - 2, d - 1], {d, Divisors[n]}], {n, 1, 45}]
PROG
(PARI) a(n) = sumdiv(n, d, (n/d)^(d-1) * binomial(n/d+d-2, d-1)); \\ Michel Marcus, Sep 02 2019
(PARI) N=66; x='x+O('x^N); Vec(sum(k=1, N, x^k/(1-k*x^k)^k)) \\ Seiichi Manyama, Sep 03 2019
CROSSREFS
Sequence in context: A199823 A013608 A369867 * A196441 A130674 A284839
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 02 2019
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 June 8 04:51 EDT 2024. Contains 373207 sequences. (Running on oeis4.)