The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202970 Symmetric matrix based on A001911, by antidiagonals. 3
1, 3, 3, 6, 10, 6, 11, 21, 21, 11, 19, 39, 46, 39, 19, 32, 68, 87, 87, 68, 32, 53, 115, 153, 167, 153, 115, 53, 87, 191, 260, 296, 296, 260, 191, 87, 142, 314, 433, 505, 528, 505, 433, 314, 142, 231, 513, 713, 843, 904, 904, 843, 713, 513, 231, 375, 835 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Let s=A001911 (F(n+3)-2, where F(n)=A000045(n), the 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 A202970 represents the matrix product M=T'*T. M is the self-fusion matrix of s, as defined at A193722. See A202971 for characteristic polynomials of principal submatrices of M, with interlacing zeros.
LINKS
EXAMPLE
Northwest corner:
1...3...6....11...19
3...10..21...39...68
6...21..46...87...153
11..39..87...167..296
19..68..153..296..528
MATHEMATICA
s[k_] := -2 + Fibonacci[k + 3];
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}] (* A001891 *)
Table[m[1, j], {j, 1, 12}] (* A001911 *)
Table[m[j, j], {j, 1, 12}]
Table[m[j, j + 1], {j, 1, 12}]
Table[Sum[m[i, n + 1 - i], {i, 1, n}], {n, 1, 12}] (* A001925 *)
CROSSREFS
Sequence in context: A167787 A185957 A124326 * A205004 A236345 A212991
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Dec 27 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 13 12:22 EDT 2024. Contains 372519 sequences. (Running on oeis4.)