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!)
A338693 a(n) = Sum_{d|n} d^(d - n/d) * binomial(d, n/d). 7
1, 4, 27, 257, 3125, 46665, 823543, 16777312, 387420490, 10000001250, 285311670611, 8916100467712, 302875106592253, 11112006825910963, 437893890380859625, 18446744073716891649, 827240261886336764177, 39346408075296709766628, 1978419655660313589123979 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} ( (k + x^k)^k - k^k ).
If p is prime, a(p) = p^p.
MATHEMATICA
a[n_] := DivisorSum[n, #^(# - n/#) * Binomial[#, n/#] &]; Array[a, 20] (* Amiram Eldar, Apr 24 2021 *)
PROG
(PARI) a(n) = sumdiv(n, d, d^(d-n/d)* binomial(d, n/d));
(PARI) N=20; x='x+O('x^N); Vec(sum(k=1, N, (k+x^k)^k-k^k))
CROSSREFS
Sequence in context: A050764 A302108 A240582 * A360776 A360728 A353014
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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)