OFFSET
0,3
COMMENTS
Triangle T=A132610 is generated by even matrix powers of itself such that row n+1 of T = row n of T^(2n) with appended '1' for n>=0 with T(0,0)=1.
FORMULA
PROG
(PARI) {a(n)=local(A=vector(n+2), p); A[1]=1; for(j=1, n-1, p=n^2-(n-j)^2; A=Vec((Polrev(A)+x*O(x^p))/(1-x))); A=Vec((Polrev(A)+x*O(x^p))/(1-x)); A[p+1]}
for(n=0, 25, print1(a(n), ", "))
(PARI) {a(n)=local(A=[1]); for(i=1, n, A=Vec(Ser(A)/(1-x)^(2*(#A)-1)); A=concat(A, A[#A])); A[#A]}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 23 2007
STATUS
approved