A062255 4th level triangle related to Eulerian numbers and binomial transforms (A062254 is third level, A062253 is second level, triangle of Eulerian numbers is first level and triangle with Z(0,0)=1 and Z(n,k)=0 otherwise is 0th level).
1, 10, 0, 65, 20, 0, 350, 350, 35, 0, 1701, 3696, 1316, 56, 0, 7770, 30660, 24570, 4200, 84, 0, 34105, 220620, 325620, 131020, 12195, 120, 0, 145750, 1447050, 3513345, 2656720, 613140, 33330, 165, 0, 611501, 8901992, 33074448, 41503484, 18444833, 2634192, 87406, 220, 0
Offset: 0
Examples
Rows start: (1), (10,0), (65,20,0), (350,350,35,0), etc.
Crossrefs
First column is A000453. Diagonals include A000007 and all but the start of A000292. Row sums are A000454. 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)); A3(n, k) = if ((n<0) || (k<0), 0, (k+3)*A3(n-1, k)+(n-k)*A3(n-1, k-1) + A2(n, k)); A4(n, k) = if ((n<0) || (k<0), 0, (k+4)*A4(n-1, k)+(n-k)*A4(n-1, k-1)+ A3(n, k)); row4(n) = vector(n+1, k, A4(n,k-1)); \\ Michel Marcus, Jan 27 2025
Formula
A(n, k) = (k+4)*A(n-1, k)+(n-k)*A(n-1, k-1) + A062254(n, k).
Extensions
More terms from Michel Marcus, Jan 27 2025
Comments