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!)
A338685 a(n) = Sum_{d|n} d^n * binomial(d, n/d). 4
1, 8, 81, 1040, 15625, 282123, 5764801, 134610944, 3486804084, 100097656250, 3138428376721, 107025924222976, 3937376385699289, 155582338242342053, 6568408660888671875, 295155786482995691520, 14063084452067724991009, 708240750793407501694308, 37589973457545958193355601 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k >= 1} ((1 + (k * x)^k)^k - 1).
If p is prime, a(p) = p^(p+1).
MATHEMATICA
a[n_] := DivisorSum[n, #^n * Binomial[#, n/#] &]; Array[a, 20] (* Amiram Eldar, Apr 24 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^n*binomial(d, n/d));
(PARI) N=20; x='x+O('x^N); Vec(sum(k=1, N, (1+(k*x)^k)^k-1))
CROSSREFS
Sequence in context: A065440 A338694 A318047 * A092366 A022519 A138439
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 23 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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)