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!)
A339712 a(n) = Sum_{d|n} d^(d+n/d-1) * binomial(d+n/d-2, d-1). 5
1, 5, 28, 273, 3126, 46948, 823544, 16781441, 387421948, 10000078446, 285311670612, 8916102176891, 302875106592254, 11112006865913416, 437893890382064056, 18446744074783625217, 827240261886336764178, 39346408075327954053967, 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/# - 1) * Binomial[# + n/# - 2, # - 1] &]; Array[a, 20] (* Amiram Eldar, Apr 25 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^(d+n/d-1)*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: A342677 A224607 A320974 * A023887 A171187 A354899
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 24 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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)