cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A122160 Identity matrices minus Steinbach matrices as characteristic polynomials to give a triangular array I[n]-An[i,j]-> P[k,x] P[k,n]->T[n,m).

Original entry on oeis.org

1, 0, -1, -1, -1, 1, -1, 2, 1, -1, -2, 7, -3, -2, 1, -1, 7, -13, 5, 2, -1, -1, 12, -34, 30, -6, -3, 1, 0, 5, -30, 60, -45, 9, 3, -1, 1, 1, -41, 130, -155, 78, -10, -4, 1, 1, -6, -3, 87, -220, 229, -106, 14, 4, -1, 2, -19, 45, 54, -378, 609, -455, 160, -15, -5, 1, 1, -15, 73, -123, -89, 609, -889, 615, -205, 20, 5, -1, 1, -24, 164, -460
Offset: 1

Views

Author

Gary W. Adamson and Roger L. Bagula, Oct 17 2006

Keywords

Comments

Remember? 1/(1-x)=Sum[x^n,{n,0,Infinitity}] So to try with the Steinbach field: (I-A[i,j])^(-1)=Sun[A[i,j]^n,{n,0,Infinity}] It doesn't appear it should be finite? But I-A[i,j] is finite--> zero? {{1,0,0}, {{1,1,1}, {{0,-1,-1}, {0,1,0}, {1,1,0}, {-1,0,0}, {0,0,1}} - 1,0,0}}= { -1,0,1}} Matrices: {{0, -1}, {-1, 1}}, {{0, -1, -1}, {-1, 0, 0}, {-1, 0, 1}}, {{0, -1, -1, -1}, {-1, 0, -1, 0}, {-1, -1, 1, 0}, {-1, 0, 0, 1}}, {{0, -1, -1, -1, -1}, {-1, 0, -1, -1, 0}, {-1, -1, 0, 0, 0}, {-1, -1, 0, 1, 0}, {-1, 0, 0, 0, 1}}

Examples

			{1},
{0, -1},
{-1, -1, 1},
{-1, 2, 1, -1},
{-2, 7, -3, -2, 1},
{-1, 7, -13, 5, 2, -1},
{-1, 12, -34, 30, -6, -3, 1},
{0, 5, -30, 60, -45, 9,3, -1},
{1, 1, -41, 130, -155, 78, -10, -4, 1}
		

Crossrefs

Programs

  • Mathematica
    An[d_] := Table[If[n + m - 1 > d, 0, 1], {n, 1, d}, {m, 1, d}]; Join[{{1}}, Table[CoefficientList[CharacteristicPolynomial[IdentityMatrix[d] - An[d], x], x], {d, 1, 20}]]; Flatten[%]

Formula

I[n]-An[i,j]-> P[k,x] P[k,n]->T[n,m)
Showing 1-1 of 1 results.