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!)
A295385 a(n) = n!*Sum_{k=0..n} binomial(2*n,n-k)*n^k/k!. 7

%I #15 Sep 08 2022 08:46:20

%S 1,3,32,579,14736,483115,19376928,918980139,50306339072,3121729082739,

%T 216541483852800,16603614676249843,1394473165806440448,

%U 127308860552307549531,12553171419275174137856,1329537514269062031406875,150531055969843353812533248,18143286205523964035258551651

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

%H G. C. Greubel, <a href="/A295385/b295385.txt">Table of n, a(n) for n = 0..335</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) ~ 2^(n - 1/2) * (1 + sqrt(2))^(n + 1/2) * n^n / exp((2 - sqrt(2))*n). - _Vaclav Kotesovec_, Nov 21 2017

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

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

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

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

%o (PARI) for(n=0,30, print1(n!*sum(k=0,n, binomial(2*n,n-k)*n^k/k!), ", ")) \\ _G. C. Greubel_, Feb 06 2018

%o (Magma) [Factorial(n)*(&+[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. A082545, A277373, A277423, A295384, A295406, A295407, A295408, A295409.

%K nonn

%O 0,2

%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 16 12:05 EDT 2024. Contains 371711 sequences. (Running on oeis4.)