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!)
A327249 Expansion of Sum_{k>=1} x^k * (1 + k * x^k)^k. 3
1, 2, 1, 5, 1, 14, 1, 17, 28, 26, 1, 160, 1, 50, 251, 321, 1, 622, 1, 1607, 1030, 122, 1, 6257, 3126, 170, 2917, 12202, 1, 27291, 1, 28929, 6656, 290, 84036, 117721, 1, 362, 13183, 407121, 1, 417881, 1, 220100, 850312, 530, 1, 2246465, 823544, 2100626 (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-1).
MATHEMATICA
nmax = 50; CoefficientList[Series[Sum[x^k (1 + k x^k)^k, {k, 1, nmax}], {x, 0, nmax}], x] // Rest
Table[DivisorSum[n, (n/#)^(# - 1) Binomial[n/#, # - 1] &], {n, 1, 50}]
PROG
(Magma) [&+[(n div d)^(d-1)*Binomial(n div d, d-1):d in Divisors(n)]:n in [1..50]]; // Marius A. Burtea, Sep 15 2019
(PARI) a(n) = sumdiv(n, d, (n/d)^(d-1) * binomial(n/d, d-1)); \\ Michel Marcus, Sep 15 2019
CROSSREFS
Cf. A006005 (positions of 1's), A087909, A217668, A260180, A327238.
Sequence in context: A092142 A348497 A299161 * A173108 A173111 A363739
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 15 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 May 16 05:56 EDT 2024. Contains 372549 sequences. (Running on oeis4.)