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!)
A277421 a(n) = n!*LaguerreL(n, -7*n). 10
1, 8, 254, 13614, 1025048, 99368620, 11781698256, 1651548277946, 267197019684224, 49000715036948304, 10044513851042988800, 2275926588768085912582, 564838094735322988575744, 152378369304839730672573044, 44397985962782115253758973952 (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) * 7^k * n^k / k!.
a(n) ~ sqrt(1/2 + 9/(2*sqrt(77))) * ((9 + sqrt(77))/2)^n * exp((-9 + sqrt(77))*n/2) * n^n.
MATHEMATICA
Table[n!*LaguerreL[n, -7*n], {n, 0, 20}]
Flatten[{1, Table[n!*Sum[Binomial[n, k] * 7^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)*7^k*n^k/k!), ", ")) \\ G. C. Greubel, May 15 2018
(Magma) [Factorial(n)*(&+[Binomial(n, k)*7^k*n^k/Factorial(k): k in [0..n]]): n in [0..30]]; // G. C. Greubel, May 15 2018
CROSSREFS
Sequence in context: A297051 A213412 A226428 * A171612 A053717 A267250
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)