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!)
A295384 a(n) = n!*Sum_{k=0..n} (-1)^k*binomial(2*n,n-k)*n^k/k!. 2
1, 1, 0, -15, -112, -135, 9504, 152425, 610560, -27692847, -765107200, -6289891839, 213472972800, 9380264146825, 129378550468608, -3294028613874375, -226623617585053696, -4707649131227927775, 83803818828756418560, 9446689798312021406353, 277055229100887244800000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Laguerre Polynomial
FORMULA
a(n) = n! * [x^n] exp(-n*x/(1 - x))/(1 - x)^(n+1).
a(n) = n!*Laguerre(n,n,n).
a(n) = Pochhammer(n, n)*hypergeom([1 - n], [n], n). - Peter Luschny, Mar 23 2023
MAPLE
a := n -> pochhammer(n, n)*hypergeom([1 - n], [n], n):
seq(simplify(a(n)), n = 0..20); # Peter Luschny, Mar 23 2023
MATHEMATICA
Table[n! SeriesCoefficient[Exp[-n x/(1 - x)]/(1 - x)^(n + 1), {x, 0, n}], {n, 0, 20}]
Table[n! LaguerreL[n, n, n], {n, 0, 20}]
Table[(-1)^n HypergeometricU[-n, n + 1, n], {n, 0, 20}]
Join[{1}, Table[n! Sum[(-1)^k Binomial[2 n, n - k] n^k/k!, {k, 0, n}], {n, 1, 20}]]
PROG
(PARI) for(n=0, 30, print1(n!*sum(k=0, n, (-1)^k*binomial(2*n, n-k)*n^k/k!), ", ")) \\ G. C. Greubel, Feb 06 2018
(Magma) [Factorial(n)*(&+[(-1)^k*Binomial(2*n, n-k)*n^k/Factorial(k): k in [0..n]]): n in [0..30]]; // G. C. Greubel, Feb 06 2018
CROSSREFS
Sequence in context: A105040 A298123 A370763 * A110822 A222410 A001849
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Nov 21 2017
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 10 16:43 EDT 2024. Contains 372387 sequences. (Running on oeis4.)