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!)
A277420 a(n) = n!*LaguerreL(n, -6*n). 11
1, 7, 194, 9078, 596760, 50508120, 5228520912, 639915545808, 90390815432064, 14472947716917120, 2590274418097708800, 512433683486806447872, 111036605823697437490176, 26153418409614396515976192, 6653213794092052464421939200, 1817951594633556391548903168000 (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) * 6^k * n^k / k!.
a(n) ~ sqrt(1/2 + 2/sqrt(15)) * (4 + sqrt(15))^n * exp((-4 + sqrt(15))*n) * n^n.
MATHEMATICA
Table[n!*LaguerreL[n, -6*n], {n, 0, 20}]
Flatten[{1, Table[n!*Sum[Binomial[n, k] * 6^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)*6^k*n^k/k!), ", ")) \\ G. C. Greubel, May 15 2018
(Magma) [Factorial(n)*(&+[Binomial(n, k)*6^k*n^k/Factorial(k): k in [0..n]]): n in [0..30]]; // G. C. Greubel, May 15 2018
CROSSREFS
Sequence in context: A159826 A012849 A308610 * A220754 A135809 A182268
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 14 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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)