A062254 3rd level triangle related to Eulerian numbers and binomial transforms (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, 6, 0, 25, 10, 0, 90, 120, 15, 0, 301, 896, 406, 21, 0, 966, 5376, 5586, 1176, 28, 0, 3025, 28470, 55560, 27910, 3123, 36, 0, 9330, 139320, 456525, 437100, 122520, 7860, 45, 0, 28501, 646492, 3312078, 5339719, 2912833, 494802, 19096, 55, 0
Offset: 0
Examples
Rows start: (1), (6,0), (25,10,0), (90,120,15,0), ...
Crossrefs
First column is A000392. Diagonals include A000007 and all but the start of A000217. Row sums are A000399.
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, (cont.)
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)); row3(n) = vector(n+1, k, A3(n,k-1)); \\ Michel Marcus, Jan 27 2025
Formula
A(n, k) = (k+3)*A(n-1, k) + (n-k)*A(n-1, k-1) + A062253(n, k).
Comments