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!)
A330260 a(n) = n! * Sum_{k=0..n} binomial(n,k) * n^(n - k) / k!. 4
1, 2, 17, 352, 13505, 830126, 74717857, 9263893892, 1513712421377, 315230799073690, 81499084718806001, 25612081645835777192, 9615370149488574778177, 4250194195208050117007942, 2184834047906975645398282625, 1292386053018890618812398220876 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n! * [x^n] exp(x/(1 - n*x)) / (1 - n*x).
a(n) = Sum_{k=0..n} binomial(n,k)^2 * n^k * k!.
a(n) ~ sqrt(2*Pi) * BesselI(0,2) * n^(2*n + 1/2) / exp(n). - Vaclav Kotesovec, Dec 18 2019
MATHEMATICA
Join[{1}, Table[n! Sum[Binomial[n, k] n^(n - k)/k!, {k, 0, n}], {n, 1, 15}]]
Join[{1}, Table[n^n n! LaguerreL[n, -1/n], {n, 1, 15}]]
Table[n! SeriesCoefficient[Exp[x/(1 - n x)]/(1 - n x), {x, 0, n}], {n, 0, 15}]
PROG
(PARI) a(n) = n! * sum(k=0, n, binomial(n, k) * n^(n-k)/k!); \\ Michel Marcus, Dec 18 2019
(Magma) [Factorial(n)*&+[Binomial(n, k)*n^(n-k)/Factorial(k):k in [0..n]]:n in [0..15]]; // Marius A. Burtea, Dec 18 2019
CROSSREFS
Main diagonal of A341014.
Sequence in context: A204249 A242368 A307315 * A243509 A128159 A319591
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 18 2019
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 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)