The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A277392 a(n) = n!*LaguerreL(n, -3*n). 11
1, 4, 62, 1626, 59928, 2844120, 165100752, 11331597942, 897635712384, 80602042275756, 8090067511468800, 897561658361441106, 109072492644378442752, 14407931244544181001216, 2055559499598438969956352, 314997663481165477898736750, 51601245736595962597616222208 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Laguerre Polynomial
FORMULA
a(n) = n! * Sum_{k=0..n} binomial(n, k) * 3^k * n^k / k!.
a(n) ~ sqrt(1/2+5/(2*sqrt(21))) * (5+sqrt(21))^n * exp(n*(sqrt(21)-5)/2) * n^n/2^n.
MATHEMATICA
Table[n!*LaguerreL[n, -3*n], {n, 0, 20}]
Flatten[{1, Table[n!*Sum[Binomial[n, k]*3^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)*3^k*n^k/k!), ", ")) \\ G. C. Greubel, May 15 2018
(Magma) [Factorial(n)*(&+[Binomial(n, k)*3^k*n^k/Factorial(k): k in [0..n]]): n in [0..30]]; // G. C. Greubel, May 15 2018
CROSSREFS
Sequence in context: A359620 A241997 A332694 * A349068 A054958 A191300
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 12 2016
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 May 15 12:24 EDT 2024. Contains 372540 sequences. (Running on oeis4.)