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!)
A330497 a(n) = n! * Sum_{k=0..n} (-1)^k * binomial(n,k) * n^(n - k) / k!. 1
1, 0, 1, 26, 1089, 70124, 6495985, 821315214, 136115947009, 28651724077976, 7470040450004001, 2363470644596843330, 892244303052345224641, 396227360441775922668036, 204487588996059177697597969, 121370399839482643287189048374 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = n! * [x^n] exp(-x/(1 - n*x)) / (1 - n*x).
a(n) = Sum_{k=0..n} (-1)^(n - k) * binomial(n,k)^2 * n^k * k!.
a(n) ~ sqrt(2*Pi) * BesselJ(0,2) * n^(2*n + 1/2) / exp(n). - Vaclav Kotesovec, Dec 18 2019
MATHEMATICA
Join[{1}, Table[n! Sum[(-1)^k 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
(Magma) [Factorial(n)*&+[(-1)^k*Binomial(n, k)*n^(n-k)/Factorial(k):k in [0..n]]:n in [0..15]]; // Marius A. Burtea, Dec 18 2019
CROSSREFS
Sequence in context: A160261 A357376 A241874 * A037138 A091429 A200721
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 24 09:42 EDT 2024. Contains 371935 sequences. (Running on oeis4.)