OFFSET
0,2
LINKS
G. C. Greubel, Rows n=0..100 of triangle, flattened
R. J. Mathar, Gauss-Laguerre and Gauss-Hermite quadrature on 64, 96 and 128 nodes, see Hermite case with m=2.
EXAMPLE
2^0*0!*L(0,3/2,x) = 1;
2^1*1!*L(1,3/2,x) = -2*x+5;
2^2*2!*L(2,3/2,x) = 4*x^2 -28*x +35 ;
2^3*3!*L(3,3/2,x) = -8*x^3+108*x^2 -378*x +315 ;
2^4*4!*L(4,3/2,x) = 16*x^4 -352*x^3 +2376*x^2 -5544*x +3465 ;
MAPLE
MATHEMATICA
t[n_, k_] := Coefficient[2^n*n!*LaguerreL[n, 3/2, x], x, n-k]; Table[t[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* Jean-François Alcover, Jan 09 2014 *)
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
R. J. Mathar, Sep 29 2013
STATUS
approved