OFFSET
0,2
COMMENTS
Triangle A078121 shifts left one column under matrix square and is related to partitions into powers of 2.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..50
PROG
(PARI) a(n)=local(p=4, q=2, A=Mat(1), B); for(m=1, n+1, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i || j==1, B[i, j]=1, B[i, j]=(A^q)[i-1, j-1]); )); A=B); return(sum(c=0, n, (A^p)[n+1, c+1]))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 10 2006
STATUS
approved