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!)
A338661 a(n) = Sum_{d|n} d^n * binomial(d+n/d-2, d-1). 9
1, 5, 28, 289, 3126, 49036, 823544, 17040385, 387538588, 10048833246, 285311670612, 8929334253419, 302875106592254, 11116754387182648, 437894348359764856, 18448995959423107073, 827240261886336764178, 39347761059781438793815, 1978419655660313589123980 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k >= 1} (k * x/(1 - (k * x)^k))^k.
If p is prime, a(p) = 1 + p^p.
MATHEMATICA
a[n_] := DivisorSum[n, #^n * Binomial[# + n/# - 2, #-1] &]; Array[a, 20] (* Amiram Eldar, Apr 22 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^n*binomial(d+n/d-2, d-1));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, (k*x/(1-(k*x)^k))^k))
CROSSREFS
Sequence in context: A171187 A354899 A057792 * A174464 A372163 A354897
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 22 2021
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 July 14 08:54 EDT 2024. Contains 374318 sequences. (Running on oeis4.)