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

%I #16 Mar 23 2023 19:46:45

%S 1,1,0,-15,-112,-135,9504,152425,610560,-27692847,-765107200,

%T -6289891839,213472972800,9380264146825,129378550468608,

%U -3294028613874375,-226623617585053696,-4707649131227927775,83803818828756418560,9446689798312021406353,277055229100887244800000

%N a(n) = n!*Sum_{k=0..n} (-1)^k*binomial(2*n,n-k)*n^k/k!.

%H G. C. Greubel, <a href="/A295384/b295384.txt">Table of n, a(n) for n = 0..400</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/LaguerrePolynomial.html">Laguerre Polynomial</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Laguerre_polynomials">Laguerre polynomials</a>

%H <a href="/index/La#Laguerre">Index entries for sequences related to Laguerre polynomials</a>

%F a(n) = n! * [x^n] exp(-n*x/(1 - x))/(1 - x)^(n+1).

%F a(n) = n!*Laguerre(n,n,n).

%F a(n) = Pochhammer(n, n)*hypergeom([1 - n], [n], n). - _Peter Luschny_, Mar 23 2023

%p a := n -> pochhammer(n, n)*hypergeom([1 - n], [n], n):

%p seq(simplify(a(n)), n = 0..20); # _Peter Luschny_, Mar 23 2023

%t Table[n! SeriesCoefficient[Exp[-n x/(1 - x)]/(1 - x)^(n + 1), {x, 0, n}], {n, 0, 20}]

%t Table[n! LaguerreL[n, n, n], {n, 0, 20}]

%t Table[(-1)^n HypergeometricU[-n, n + 1, n], {n, 0, 20}]

%t Join[{1}, Table[n! Sum[(-1)^k Binomial[2 n, n - k] n^k/k!, {k, 0, n}], {n, 1, 20}]]

%o (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

%o (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

%Y Cf. A006902, A277373, A277423, A295385.

%K sign

%O 0,4

%A _Ilya Gutkovskiy_, Nov 21 2017

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 09:38 EDT 2024. Contains 371967 sequences. (Running on oeis4.)