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!)
A343573 a(n) = Sum_{d|n} d^d * binomial(d+n/d-2, d-1). 9
1, 5, 28, 265, 3126, 46750, 823544, 16778257, 387420652, 10000015646, 285311670612, 8916100731047, 302875106592254, 11112006831322846, 437893890380906656, 18446744073843774497, 827240261886336764178, 39346408075300025340205 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k >= 1} (k * x/(1 - x^k))^k.
If p is prime, a(p) = 1 + p^p.
MATHEMATICA
a[n_] := DivisorSum[n, #^#*Binomial[# + n/# - 2, # - 1] &]; Array[a, 20] (* Amiram Eldar, Apr 20 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^d*binomial(d+n/d-2, d-1));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, (k*x/(1-x^k))^k))
CROSSREFS
Sequence in context: A062796 A347399 A353009 * A359700 A342677 A224607
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 20 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 August 12 10:37 EDT 2024. Contains 375092 sequences. (Running on oeis4.)