OFFSET
1,4
COMMENTS
Let s=A007598 (squared Fibonacci numbers), and let T be the infinite square matrix whose n-th row is formed by putting n-1 zeros before the terms of s. Let T' be the transpose of T. Then A203001 represents the matrix product M=T'*T. M is the self-fusion matrix of s, as defined at A193722. See A203002 for characteristic polynomials of principal submatrices of M, with interlacing zeros.
EXAMPLE
Northwest corner:
1...1...4....9....25....64
1...2...5....13...34....89
4...5...18...41...113...290
9...13..41...99...266...724
MATHEMATICA
s[k_] := Fibonacci[k]^2;
U = NestList[Most[Prepend[#, 0]] &, #, Length[#] - 1] &[Table[s[k], {k, 1, 15}]];
L = Transpose[U]; M = L.U; TableForm[M]
m[i_, j_] := M[[i]][[j]];
Flatten[Table[m[i, n + 1 - i], {n, 1, 12}, {i, 1, n}]]
f[n_] := Sum[m[i, n], {i, 1, n}] + Sum[m[n, j], {j, 1, n - 1}]
Table[f[n], {n, 1, 12}]
Table[Sqrt[f[n]], {n, 1, 12}] (* A001654 *)
Table[m[1, j], {j, 1, 12}] (* A007598 *)
Table[m[2, j], {j, 1, 12}] (* A001519 *)
Table[m[j, j], {j, 1, 12}] (* A005969 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Dec 27 2011
STATUS
approved