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!)
A277391 a(n) = n!*LaguerreL(n, -2*n). 11
1, 3, 34, 654, 17688, 616120, 26252496, 1322624016, 76909665664, 5069558461824, 373529452588800, 30422117430022912, 2713911389090970624, 263171888496899625984, 27563036166079327578112, 3100736138961250867968000, 372888702864658105915244544 (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) * 2^k * n^k / k!.
a(n) ~ (1 + sqrt(3))^(2*n+1) * n^n / (3^(1/4) * 2^(n+1) * exp((2 - sqrt(3))*n)).
MATHEMATICA
Table[n!*LaguerreL[n, -2*n], {n, 0, 20}]
Flatten[{1, Table[n!*Sum[Binomial[n, k]*2^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)*2^k*n^k/k!), ", ")) \\ G. C. Greubel, May 15 2018
(Magma) [Factorial(n)*(&+[Binomial(n, k)*2^k*n^k/Factorial(k): k in [0..n]]): n in [0..30]]; // G. C. Greubel, May 15 2018
CROSSREFS
Sequence in context: A047794 A332679 A256512 * A231850 A109521 A274744
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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)