A070895
Triangle read by rows where T(n+1,k)=T(n,k)+n*T(n-1,k) starting with T(n,n)=1 and T(n,k)=0 if n
1, 1, 1, 2, 1, 1, 4, 3, 1, 1, 10, 6, 4, 1, 1, 26, 18, 8, 5, 1, 1, 76, 48, 28, 10, 6, 1, 1, 232, 156, 76, 40, 12, 7, 1, 1, 764, 492, 272, 110, 54, 14, 8, 1, 1, 2620, 1740, 880, 430, 150, 70, 16, 9, 1, 1, 9496, 6168, 3328, 1420, 636, 196, 88, 18, 10, 1, 1, 35696, 23568
Offset: 0
Examples
Rows start: 1; 1,1; 2,1,1; 4,3,1,1; 10,6,4,1,1; etc. Triangle begins 1, 1, 1, 2, 1, 1, 4, 3, 1, 1, 10, 6, 4, 1, 1, 26, 18, 8, 5, 1, 1, 76, 48, 28, 10, 6, 1, 1, 232, 156, 76, 40, 12, 7, 1, 1 Production matrix begins 1, 1, 1, 0, 1, 1, 1, 0, 1, 2, 1, 1, 0, 1, 4, 3, 1, 1, 0, 1, 10, 6, 4, 1, 1, 0, 1, 26, 18, 8, 5, 1, 1, 0, 1, 76, 48, 28, 10, 6, 1, 1, 0, 1, 232, 156, 76, 40, 12, 7, 1, 1, 0, 1 Inverse begins 1, -1, 1, -1, -1, 1, 0, -2, -1, 1, 0, 0, -3, -1, 1, 0, 0, 0, -4, -1, 1, 0, 0, 0, 0, -5, -1, 1, 0, 0, 0, 0, 0, -6, -1, 1 - _Paul Barry_, Mar 02 2011
Crossrefs
Formula
T(n, k+1)=(T(n, k-1)-T(n-1, k))/k for 0
Comments