OFFSET
0,2
COMMENTS
Conjectures: (1) The first column equals the row sums of Losanitsch's triangle (which equals A005418). (2) Let L^n denote the n-th power of Losanitsch's triangle. Then the first column of L^(n+1) equals the row sums of L^n.
PROG
(PARI) s=13; L=matrix(s, s); T(n, k)= (1/2) *(binomial(n, k)+binomial(n%2, k%2)*binomial(n\2, k\2)); for(n=1, s, for(k=1, s, L[n, k]=T(n-1, k-1))); L2=L*L; for(n=1, s, for(k=1, n, print1(L2[n, k], ", ")));
CROSSREFS
KEYWORD
AUTHOR
Gerald McGarvey, Oct 30 2007
STATUS
approved