login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A277418
a(n) = n!*LaguerreL(n, -4*n).
11
1, 5, 98, 3246, 151064, 9052120, 663449040, 57490690544, 5749754436992, 651830574374784, 82599621627948800, 11569798584488362240, 1775052172071446510592, 296026752508667034942464, 53320241823337034415908864, 10315767337287172256717568000
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Laguerre Polynomial
FORMULA
a(n) = n! * Sum_{k=0..n} binomial(n, k) * 4^k * n^k / k!.
a(n) ~ sqrt(2 + 3/sqrt(2)) * (3 + 2*sqrt(2))^n * exp((-3 + 2*sqrt(2))*n) * n^n / 2.
MATHEMATICA
Table[n!*LaguerreL[n, -4*n], {n, 0, 20}]
Flatten[{1, Table[n!*Sum[Binomial[n, k] * 4^k * n^k / k!, {k, 0, n}], {n, 1, 20}]}]
PROG
(PARI) for(n=0, 30, print1(n!*sum(k=0, n, binomial(n, k)*4^k*n^k/k!), ", ")) \\ G. C. Greubel, May 15 2018
(Magma) [Factorial(n)*(&+[Binomial(n, k)*4^k*n^k/Factorial(k): k in [0..n]]): n in [0..30]]; // G. C. Greubel, May 15 2018
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 14 2016
STATUS
approved