A132014 T(n,j) for double application of an iterated mixed order Laguerre transform: Coefficients of Laguerre polynomial (-1)^n*n!*L(n,2-n,x).
1, -2, 1, 2, -4, 1, 0, 6, -6, 1, 0, 0, 12, -8, 1, 0, 0, 0, 20, -10, 1, 0, 0, 0, 0, 30, -12, 1, 0, 0, 0, 0, 0, 42, -14, 1, 0, 0, 0, 0, 0, 0, 56, -16, 1, 0, 0, 0, 0, 0, 0, 0, 72, -18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 90, -20, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, -22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, -24, 1
Offset: 0
Examples
First few rows of the triangle are 1; -2, 1; 2, -4, 1; 0, 6, -6, 1; 0, 0, 12, -8, 1; 0, 0, 0, 20, -10, 1;
Links
- G. C. Greubel, Rows n=0..100 of triangle, flattened
- M. Janjic, Some classes of numbers and derivatives, JIS 12 (2009) 09.8.3.
- Wikipedia, Appell sequence
Programs
-
Mathematica
m = 12; s = Exp[x*y]*(1 - x)^2 + O[x]^(m + 2) + O[y]^(m + 2); T[n_, k_] := SeriesCoefficient[s, {x, 0, n}, {y, 0, k}]*n!; T[0, 0] = 1; Table[T[n, k], {n, 0, m}, {k, 0, n}] // Flatten (* Jean-François Alcover, Jul 09 2015 *)
-
PARI
row(n) = Vecrev((-1)^n*n!*pollaguerre(n, 2-n)); \\ Michel Marcus, Feb 06 2021
Formula
T(n,k) = binomial(n,k)*c(n-k).
E.g.f. for row polynomials: exp(x*y)(1-x)^2. Implies the row polynomials form an Appell sequence (see Wikipedia). - Tom Copeland, Dec 03 2013
From Tom Copeland, Apr 21 2014: (Start)
Change notation letting L(n,m,x) = Lag(n,x,m).
Row polynomials: (-1)^n*n!*L(n,2-n,x) = (-1)^n*(-x)^(n-2)*2!*L(2,n-2,x) =
(-1)^n*(2!/(2-n)!)*K(-n,2-n+1,x) where K is Kummer's confluent hypergeometric function (as a limit of n+s as s tends to zero).
For the row polynomials, the lowering operator = d/dx and the raising operator = x - 2/(1-D).
T = (I - A132440)^2 = [2*I - exp(A238385-I)]^2 = signed exp[2*(A238385-I)], where I = identity matrix.
Operationally, (-1)^n*n!*L(n,2-n,-:xD:) = (-1)^n*x^(n-2)*:Dx:^n*x^(2-n) = (-1)^n*x^(-2)*:xD:^n*x^2 = (-1)^n*n!*binomial(xD+2,n) = (-1)^n*n!*binomial(2,n)*K(-n,2-n+1,-:xD:) where :AB:^n = A^n*B^n for any two operators. Cf. A235706. (End)
n-th row polynomial: n!*Sum_{k = 0..n} (-1)^(n-k)*binomial(n,k)*Lag(k,2,x). - Peter Bala, Jul 25 2021
Extensions
Title modified by Tom Copeland, Apr 21 2014
Missing term -18 inserted in 10th row by Jean-François Alcover, Jul 09 2015
Comments