OFFSET
0,2
COMMENTS
Second row or column is A007290.
LINKS
L. Carlitz, Some Binomial Coefficient Identities, Fibonacci Quart. 4 (1966), 323-331
M. E. Cohen and H. S. Sun, Some extensions of the Brock-Carlitz identity, Proc. Amer. Math. Soc. 76 (1979), 178-185
M. E. Cohen and H. S. Sun, Further generalizations of the Brock-Carlitz identity, Journal of Mathematical Analysis and Applications, Volume 82, Issue 2, August 1981, Pages 346-360
FORMULA
T(n,k) = T(k, n).
T(n,k) - T(n-1, k) - T(n, k-1) = C(n+k,k)^2 : Carlitz-Brock identity (cf links).
EXAMPLE
Table starts:
0: 1, 2, 3, 4, 5,
1: 2, 8, 20, 40, 70,
2: 3, 20, 76, 216, 511,
3: 4, 40, 216, 832, 2568,
4: 5, 70, 511, 2568, 10036
PROG
(PARI) h(m, n) = sum(i=0, m, sum(j=0, n, binomial(i+j, i)*binomial(m-i+j, m-i)*binomial(i+n-j, n-j)*binomial(m-i+n-j, m-i)))
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Michel Marcus, Dec 19 2012
STATUS
approved