OFFSET
1,2
COMMENTS
Appears to be the same as A073165 read as a triangular array (excluding the first column).
FORMULA
T(n,k)=1/(1!*2! ... *k!)*Sum_{1 <= x_1, ...,x_k <= n} |det V(x_1, ...,x_k)|, where V(x_1, ...,x_k) is the Vandermonde matrix of order k. For example, T(n,2) = 1/2*Sum_{1<=i,j<= n} |i-j|. T(n,k) = 1/(1!*2! ... *k!)*Sum_{1 <= x_1, ...,x_k <= n} |(Product_{1 <= i < j <= k} (x_j - x_i) )|.
EXAMPLE
Triangle starts:
1;
2 1;
3 4 1;
4 10 8 1;
5 20 35 16 1;
CROSSREFS
KEYWORD
AUTHOR
Peter Bala, Sep 18 2007
STATUS
approved