A062253 2nd level triangle related to Eulerian numbers and binomial transforms (triangle of Eulerian numbers is first level and triangle with Z(0,0)=1 and Z(n,k)=0 otherwise is 0th level).
1, 3, 0, 7, 4, 0, 15, 30, 5, 0, 31, 146, 91, 6, 0, 63, 588, 868, 238, 7, 0, 127, 2136, 6126, 4096, 575, 8, 0, 255, 7290, 36375, 47400, 16929, 1326, 9, 0, 511, 23902, 193533, 434494, 306793, 64362, 2971, 10, 0, 1023, 76296, 956054, 3421902, 4169418, 1765940, 231462, 6534, 11, 0
Offset: 0
Examples
Rows start: (1), (3,0), (7,4,0), (15,30,5,0), ...
Crossrefs
First column is A000225. Diagonals include A000007, A009056. Row sums are A000254. Taking all the levels together to create a pyramid, one face would be A010054 as a triangle with a parallel face which is Pascal's triangle (A007318) with two columns removed, another face would be a triangle of Stirling numbers of the second kind (A008277) and a third face would be A000007 as a triangle, with a triangle of Eulerian numbers (A008292), A062253, A062254 and A062255 as faces parallel to it. The row sums of this last group would provide a triangle of unsigned Stirling numbers of the first kind (A008275).
Programs
-
PARI
E(n, k) = if ((n<0) || (k<0), 0, if ((n==0) && (k==0), 1, (k+1)*E(n-1, k)+(n-k)*E(n-1, k-1))); A2(n, k) = if ((n<0) || (k<0), 0, (k+2)*A2(n-1, k)+(n-k)*A2(n-1, k-1)+E(n, k)); row2(n) = vector(n+1, k, A2(n,k-1)); \\ Michel Marcus, Jan 27 2025
Formula
A(n, k) = (k+2)*A(n-1, k)+(n-k)*A(n-1, k-1)+E(n, k) where E(n, k)=(k+1)*E(n-1, k)+(n-k)*E(n-1, k-1) and E(0, 0)=1 is a triangle of Eulerian numbers, essentially A008292.
Extensions
More terms from Michel Marcus, Jan 27 2025
Comments