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!)
A338694 a(n) = Sum_{d|n} d^d * binomial(d, n/d). 4
1, 8, 81, 1028, 15625, 280017, 5764801, 134219264, 3486784428, 100000031250, 3138428376721, 106993206079936, 3937376385699289, 155568095575106627, 6568408355712921875, 295147905179822588160, 14063084452067724991009, 708235345355351624428356, 37589973457545958193355601 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} ( (k + k * x^k)^k - k^k ) = Sum_{k>=1} k^k * ( (1 + x^k)^k - 1 ).
If p is prime, a(p) = p^(p+1).
MATHEMATICA
a[n_] := DivisorSum[n, #^# * Binomial[#, n/#] &]; Array[a, 20] (* Amiram Eldar, Apr 24 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^d*binomial(d, n/d));
(PARI) N=20; x='x+O('x^N); Vec(sum(k=1, N, (k+k*x^k)^k-k^k))
CROSSREFS
Sequence in context: A210127 A007778 A065440 * A318047 A338685 A092366
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 April 24 07:54 EDT 2024. Contains 371922 sequences. (Running on oeis4.)