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!)
A131441 Row sums of triangle A130757 (coefficients of scaled Laguerre-Sonin polynomials n!(2^(n-m))*L(n,1/2,x)). 2
1, 2, 6, 20, 28, -936, -23672, -469456, -9112560, -182135008, -3804634784, -83297957568, -1906560847424, -45349267830400, -1110454747949952, -27582769902812416, -677408818380914432, -15581576995770441216, -284593895830642711040 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{m=0..n} A130757(n,m), n>=0, with A130757(n,m) = n!*2^(n-m) *(-1)^m*binomial(n+1/2,n-m)/m!, n>=m>=0, else 0.
Conjecture: a(n) +2*(1-2*n)*a(n-1) +2*(2*n-1)*(n-1)*a(n-2)=0. - R. J. Mathar, Oct 02 2013
MATHEMATICA
T[n_, k_]:= (-1)^k*n!*2^(n-k)*Binomial[n +1/2, n-k]/k!; Table[Sum[T[n, k], {k, 0, n}], {n, 0, 40}] (* G. C. Greubel, May 14 2018 *)
PROG
(PARI) for(n=0, 30, print1(sum(k=0, n, (-1)^k*n!*2^(n-k)*binomial(n+1/2, n-k)/k!), ", ")) \\ G. C. Greubel, May 14 2018
(Magma) [Round(Factorial(n)*(&+[(-1)^k*2^(n-k)*Gamma(n+3/2)/(Gamma(k+1) *Gamma(n -k+1)*Gamma(k+3/2)): k in [0..n]])): n in [0..20]]; // G. C. Greubel, May 14 2018
CROSSREFS
Cf. A130757.
Sequence in context: A062281 A267124 A322371 * A035142 A064701 A368249
KEYWORD
sign,easy
AUTHOR
Wolfdieter Lang, Aug 07 2007
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 March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)