A132440 Infinitesimal Pascal matrix: generator (lower triangular matrix representation) of the Pascal matrix, the classical operator xDx, iterated Laguerre transforms, associated matrices of the list partition transform and general Euler transformation for sequences.
0, 1, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0
Offset: 0
Examples
Matrix T begins 0; 1,0; 0,2,0; 0,0,3,0; 0,0,0,4,0; ...
References
- T. Mansour and M. Schork, Commutation Relations, Normal Ordering, and Stirling Numbers, Chapman and Hall/CRC, 2015, (x^n D^n x^n on p. 187).
Links
- Robert Israel, Table of n, a(n) for n = 0..10000
- W. A. Al-Salam, Operational representations for the Laguerre and other polynomials, Duke Math. Jour., vol. 31 (1964), pp. 127-142.
- Tom Copeland, Fractional Calculus, Gamma Classes, the Riemann Zeta Function, and an Appell Pair of Sequences.
- Tom Copeland, Goin' with the Flow: Logarithm of the Derivative Operator.
- Tom Copeland, Infinigens, the Pascal Pyramid, and the Witt and Virasoro Algebras.
- Tom Copeland, The Inverse Mellin Transform, Bell Polynomials, a Generalized Dobinski Relation, and the Confluent Hypergeometric Functions (pdf).
- Tom Copeland, Mathemagical Forests.
- Tom Copeland, Mellin Interpolation of Differential Ops and Associated Infinigens and Appell Polynomials: The Ordered, Laguerre, and Scherk-Witt-Lie Diff Ops.
- G. Hetyei, Meixner polynomials of the second kind and quantum algebras representing su(1,1), arXiv preprint arXiv:0909.4352 [math.QA], 2009. (Cf. Viennot's Laguerre histoires.)
- K. A. Penson, P. Blasiak, A. Horzela, G.H.E. Duchamp and A. I. Solomon, Laguerre-type derivatives: Dobinski relations and combinatorial identities, arXiv:0904.0369 [math-ph], 2009.
- K. A. Penson, P. Blasiak, A. Horzela, G.H.E. Duchamp and A. I. Solomon, Laguerre-type derivatives: Dobinski relations and combinatorial identities, Journal of Mathematical Physics vol. 50, (2009) 083512.
- G. Stokes, Note on certain formulae in the calculus of operations, Proceedings of the Royal Society of Edinburgh, IX, pp. 101-102, 1876.
Programs
-
Maple
seq(op([0$i,i]),i=1..20); # Robert Israel, Oct 02 2015
-
Mathematica
Table[PadLeft[{n, 0}, n+1], {n, 0, 11}] // Flatten (* Jean-François Alcover, Apr 30 2014 *)
Formula
T = log(P) with the Pascal matrix P:=A007318. This should be read as T_N = log(P_N) with P_N the N X N matrix P, N>=2. Because P_N is lower triangular with all diagonal elements 1, the series log(1_N-(1_N-P_N)) stops after N-1 terms because (1_N-P_N)^N is the 0_N-matrix. - Wolfdieter Lang, Oct 14 2010
Given a polynomial sequence p_n(x) with p_0(x)=1 and the lowering and raising operators L and R defined by L p_n(x) = n * p_(n-1)(x) and R p_n(x) = p_(n+1)(x), the matrix T represents the action of R*L*R in the p_n(x) basis. For p_n(x) = x^n, L = D = d/dx and R = x. For p_n(x) = x^n/n!, L = DxD and R = D^(-1). - Tom Copeland, Oct 25 2012
From Tom Copeland, Apr 26 2014: (Start)
A) T = exp(A238385-I) - I
B) = [St1]*P*[St2] - I
C) = [St1]*P*[St1]^(-1) - I
D) = [St2]^(-1)*P*[St2] - I
E) = [St2]^(-1)*P*[St1]^(-1) - I
where P=A007318, [St1]=padded A008275 just as [St2]=A048993=padded A008277, and I=identity matrix. (End)
From Robert Israel, Oct 02 2015: (Start)
G.f. Sum_{k >= 1} k x^((k+3/2)^2/2 - 17/8) is related to Jacobi theta functions.
If 8*n+17 = y^2 is a square, then a(n) = (y-3)/2, otherwise a(n) = 0. (End)
Extensions
Missing zero added in table by Tom Copeland, Feb 25 2014
Comments