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!)
A338663 a(n) = Sum_{d|n} (n/d)^n * binomial(d+n/d-1, d). 5
1, 9, 82, 1073, 15626, 284567, 5764802, 134874369, 3486981232, 100146490520, 3138428376722, 107039261352736, 3937376385699290, 155587085803983069, 6568409424129452048, 295158038428838854657, 14063084452067724991010, 708242105301294465144506, 37589973457545958193355602 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k >= 1} (1/(1 - (k * x)^k)^k - 1).
If p is prime, a(p) = 1 + p^(p+1).
MATHEMATICA
a[n_] := DivisorSum[n, (n/#)^n * Binomial[# + n/# - 1, #] &]; Array[a, 20] (* Amiram Eldar, Apr 22 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, (n/d)^n*binomial(d+n/d-1, d));
(PARI) N=20; x='x+O('x^N); Vec(sum(k=1, N, 1/(1-(k*x)^k)^k-1))
CROSSREFS
Sequence in context: A283498 A294956 A294645 * A308668 A308481 A041146
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 April 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)