A202605
Array: row n shows the coefficients of the characteristic polynomial of the n-th principal submatrix of the Fibonacci self-fusion matrix (A202453).
Original entry on oeis.org
1, -1, 1, -3, 1, 1, -6, 9, -1, 1, -9, 26, -24, 1, 1, -12, 52, -96, 64, -1, 1, -15, 87, -243, 326, -168, 1, 1, -18, 131, -492, 1003, -1050, 441, -1, 1, -21, 184, -870, 2392, -3816, 3265, -1155, 1, 1, -24, 246, -1404, 4871, -10500, 13710
Offset: 1
The 1st principal submatrix (ps) of A202453 is {{1}} (using Mathematica matrix notation), with p(1) = 1-x and zero-set {1}.
...
The 2nd ps is {{1,1},{1,2}}, with p(2) = 1-3x+x^2 and zero-set {0.382..., 2.618...}.
...
The 3rd ps is {{1,1,2},{1,2,3},{2,3,6}}, with p(3) = 1-6x+9x^2-x^3 and zero-set {0.283..., 0.426..., 8.290...}.
...
Top of the array A202605:
1, -1;
1, -3, 1;
1, -6, 9, -1;
1, -9, 26, -24, 1;
1, -12, 52, -96, 64, -1;
1, -15, 87, -243, 326, -168, 1;
- S.-G. Hwang, Cauchy's interlace theorem for eigenvalues of Hermitian matrices, American Mathematical Monthly 111 (2004) 157-159.
- Clark Kimberling, Fusion, Fission, and Factors, Fib. Q., 52 (2014), 195-202.
- A. Mercer and P. Mercer, Cauchy's interlace theorem and lower bounds for the spectral radius, International Journal of Mathematics and Mathematical Sciences 23, no. 8 (2000) 563-566.
-
f[k_] := Fibonacci[k];
U[n_] := NestList[Most[Prepend[#, 0]] &, #, Length[#] - 1] &[Table[f[k], {k, 1, n}]];
L[n_] := Transpose[U[n]];
F[n_] := CharacteristicPolynomial[L[n].U[n], x];
c[n_] := CoefficientList[F[n], x]
TableForm[Flatten[Table[F[n], {n, 1, 10}]]]
Table[c[n], {n, 1, 12}]
Flatten[%]
TableForm[Table[c[n], {n, 1, 10}]]
A202970
Symmetric matrix based on A001911, by antidiagonals.
Original entry on oeis.org
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
Offset: 1
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
-
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 *)
A202877
Array: row n shows the coefficients of the characteristic polynomial of the n-th principal submatrix of the symmetric matrix A202875; by antidiagonals.
Original entry on oeis.org
1, -1, 1, -6, 1, 1, -11, 27, -1, 1, -17, 84, -97, 1, 1, -23, 177, -497, 311, -1, 1, -29, 306, -1405, 2546, -925, 1, 1, -35, 471, -3034, 9375, -11628, 2628, -1, 1, -41, 672, -5599, 24817, -55080, 48875, -7247, 1, 1, -47, 909, -9316, 54164
Offset: 1
Top of the array:
1...-1
1...-6....1
1...-11...27...-1
1...-17...84...-97...1
-
f[k_] := -1 + Fibonacci[k + 2]
U[n_] :=NestList[Most[Prepend[#, 0]] &, #, Length[#] - 1] &[Table[f[k], {k, 1, n}]];
L[n_] := Transpose[U[n]];
F[n_] := CharacteristicPolynomial[L[n].U[n], x];
c[n_] := CoefficientList[F[n], x]
TableForm[Flatten[Table[F[n], {n, 1, 10}]]]
Table[c[n], {n, 1, 12}]
Flatten[%]
TableForm[Table[c[n], {n, 1, 10}]]
Showing 1-3 of 3 results.
Comments