OFFSET
0,3
COMMENTS
As a number square read by antidiagonals, the rows represent the row sums of the inverses of the Riordan arrays (1/(1+x),x/(1+x)^k), k>=0. The rows are then given by T(n,k)=(n-1)C(n*k,k)-(n-2)*sum{j=0..k, C(n*k,j)}. T(n,n) is A040000, T(n+1,n) is A000079, T(n+2,n) is A000984, T(n+3,n) is A047098. The reverse of this triangle is A107030. Row sums are A107028. Diagonal sums are A107029.
FORMULA
Number triangle T(n, k)=if(k<=n, (n-k-1)C((n-k)*k, k)-(n-k-2)*sum{j=0..k, C((n-k)*k, j)}, 0).
EXAMPLE
Triangle begins
1;
1,2;
1,2,2;
1,2,4,2;
1,2,6,8,2;
1,2,8,20,16,2;
CROSSREFS
KEYWORD
AUTHOR
Paul Barry, May 09 2005
STATUS
approved