proposed
approved
Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
proposed
approved
editing
proposed
Let s=(1,3,4,7,11,...)=A000201) 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 A202871 represents the matrix product M=T'*T. M is the self-fusion matrix of s, as defined at A193722. See A202872 for characteristic polynomials of principal submatrices of M, with interlacing zeros.
approved
editing
Let s=(1,3,4,7,11,...)=A000201) and let T be the infinite square matrix whose nth n-th row is formed by putting n-1 zeros before the terms of s. Let T' be the transpose of T. Then A202871 represents the matrix product M=T'*T. M is the self-fusion matrix of s, as defined at A193722. See A202872 for characteristic polynomials of principal submatrices of M,with interlacing zeros.
_Clark Kimberling (ck6(AT)evansville.edu), _, Dec 26 2011
proposed
approved
editing
proposed
allocated for Clark KimberlingSymmetric matrix based on the Lucas sequence, A000032, by antidiagonals.
1, 3, 3, 4, 10, 4, 7, 15, 15, 7, 11, 25, 26, 25, 11, 18, 40, 43, 43, 40, 18, 29, 65, 69, 75, 69, 65, 29, 47, 105, 112, 120, 120, 112, 105, 47, 76, 170, 181, 195, 196, 195, 181, 170, 76, 123, 275, 293, 315, 318, 318, 315, 293, 275, 123, 199, 445, 474, 510, 514
1,2
Let s=(1,3,4,7,11,...)=A000201) and let T be the infinite square matrix whose nth row is formed by putting n-1 zeros before the terms of s. Let T' be the transpose of T. Then A202871 represents the matrix product M=T'*T. M is the self-fusion matrix of s, as defined at A193722. See A202872 for characteristic polynomials of principal submatrices of M,with interlacing zeros.
Northwest corner:
1....3....4....7....11...18
3....10...15...25...40...65
4....15...26...43...69...112
7....25...43...75...120..195
11...40...69...120..196..318
s[k_] := LucasL[k];
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}] (* A027961 *)
Table[m[1, j], {j, 1, 12}] (* A000032 *)
Cf. A202872.
allocated
nonn,tabl
Clark Kimberling (ck6(AT)evansville.edu), Dec 26 2011
approved
editing
allocated for Clark Kimberling
allocated
approved