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!)
A351340 a(n) = Sum_{k=0..n} n^k * k^(n-k). 2
1, 1, 6, 48, 516, 6955, 112686, 2132634, 46167560, 1125116901, 30481672610, 908760877244, 29565986232396, 1042354163621927, 39584173937284438, 1610922147768721590, 69940319175066857488, 3226793787576474492657, 157649292247463953189578 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = [x^n] Sum_{k>=0} (n*x)^k/(1 - k*x).
a(n) ~ c * n^(n + 1/2), where c = sqrt(Pi)/2. - Vaclav Kotesovec, Feb 09 2022
MATHEMATICA
a[0] = 1; a[n_] := Sum[n^k * k^(n - k), {k, 0, n}]; Array[a, 20, 0] (* Amiram Eldar, Feb 08 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, n^k*k^(n-k));
CROSSREFS
Main diagonal of A351339.
Sequence in context: A055861 A053506 A052567 * A368323 A002170 A153467
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Feb 08 2022
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 July 12 19:17 EDT 2024. Contains 374252 sequences. (Running on oeis4.)