cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A131441 Row sums of triangle A130757 (coefficients of scaled Laguerre-Sonin polynomials n!(2^(n-m))*L(n,1/2,x)).

This page as a plain text file.
%I A131441 #15 Aug 22 2025 03:35:02
%S A131441 1,2,6,20,28,-936,-23672,-469456,-9112560,-182135008,-3804634784,
%T A131441 -83297957568,-1906560847424,-45349267830400,-1110454747949952,
%U A131441 -27582769902812416,-677408818380914432,-15581576995770441216,-284593895830642711040
%N A131441 Row sums of triangle A130757 (coefficients of scaled Laguerre-Sonin polynomials n!(2^(n-m))*L(n,1/2,x)).
%H A131441 G. C. Greubel, <a href="/A131441/b131441.txt">Table of n, a(n) for n = 0..400</a>
%F A131441 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.
%F A131441 D-finite with recurrence: 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
%t A131441 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 *)
%o A131441 (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
%o A131441 (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
%Y A131441 Cf. A130757.
%K A131441 sign,easy,changed
%O A131441 0,2
%A A131441 _Wolfdieter Lang_, Aug 07 2007