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!)
A349969 a(n) = Sum_{k=0..n} (k*n)^(n-k). 3
1, 1, 3, 16, 141, 1871, 34951, 873174, 27951929, 1107415549, 52891809491, 2987861887924, 196828568831365, 14950745148070499, 1296606974501951743, 127238563043551898986, 14012626653816435643633, 1719136634276882827095009, 233448782800118609096218891 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = [x^n] Sum_{k>=0} x^k/(1 - n*k * x).
a(n) ~ sqrt(2*Pi/(n*(1 + LambertW(exp(1)*n^2)))) * (n^2/LambertW(exp(1)*n^2))^(n + 1/2 - n/LambertW(exp(1)*n^2)). - Vaclav Kotesovec, Dec 07 2021
MATHEMATICA
a[n_] := Sum[If[k == n == 0, 1, (k*n)^(n - k)], {k, 0, n}]; Array[a, 19, 0] (* Amiram Eldar, Dec 07 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (k*n)^(n-k));
CROSSREFS
Sequence in context: A020554 A062874 A321239 * A109398 A294003 A006058
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 07 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 March 28 17:25 EDT 2024. Contains 371254 sequences. (Running on oeis4.)