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!)
A124031 Alternating sign center tridiagonal matrices as triangular sequences: m(n,m,d)=If[ n == m, (-1)^n, If[n == m - 1 || n == m + 1, -1, 0]]. 0
-1, -1, -1, -2, 0, 1, 3, 3, -1, -1, 5, 0, -5, 0, 1, -8, -8, 6, 6, -1, -1, -13, 0, 19, 0, -8, 0, 1, 21, 21, -25, -25, 9, 9, -1, -1, 34, 0, -65, 0, 42, 0, -11, 0, 1, -55, -55, 90, 90, -51, -51, 12, 12, -1, -1, -89, 0, 210, 0, -183, 0, 74, 0, -14, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
The scalar change effect between first elements of the matrix tridiagonals and their recursive polynomial counter parts reminded me of pseudoscalar results in tensors ( sign changes of scalars). Determinant sequence is Fibonacci: Table[Det[M[d]], {d, 1, 10}] {-1, -2, 3, 5, -8, -13, 21, 34, -55, -89} Matrices: 1 X 1 {{-1}}, 2 X 2 {{-1, -1}, {-1, 1}}, 3 X 3 {{-1, -1,0}, {-1, 1, -1}, {0, -1, -1}}, 4 X 4 {{-1, -1, 0, 0}, {-1, 1, -1, 0}, {0, -1, -1, -1}, {0, 0, -1, 1}}, 5 X 5 {{-1, -1, 0, 0, 0}. {-1, 1, -1, 0, 0}, {0, -1, -1, -1, 0}, {0, 0, -1, 1, -1}, {0, 0, 0, -1, -1}}, 6 X 6 {{-1, -1, 0, 0, 0, 0}, {-1, 1, -1, 0, 0, 0}, {0, -1, -1, -1, 0, 0}, {0, 0, -1, 1, -1, 0}, {0, 0, 0, -1, -1, -1}, {0, 0, 0, 0, -1, 1}}
LINKS
Eric Weisstein's World of Mathematics, Pseudoscalar
FORMULA
m(n,m,d)=If[ n == m, (-1)^n, If[n == m - 1 || n == m + 1, -1, 0]]
EXAMPLE
Triangular sequence:
{-1}},
{-1, -1},
{-2, 0, 1},
{3, 3, -1, -1},
{5, 0, -5, 0, 1},
{-8, -8, 6, 6, -1, -1},
{-13, 0, 19, 0, -8, 0, 1},
{21, 21, -25, -25, 9, 9, -1, -1},
{34, 0, -65, 0, 42, 0, -11, 0, 1},
{-55, -55, 90, 90, -51, -51, 12, 12, -1, -1},
{-89, 0, 210, 0, -183, 0, 74, 0, -14, 0, 1}
MATHEMATICA
T[n_, m_, d_] := If[ n == m, (-1)^n, If[n == m - 1 || n == m + 1, -1, 0]] M[d_] := Table[T[n, m, d], {n, 1, d}, {m, 1, d}] Table[M[d], {d, 1, 10}] Table[Det[M[d]], {d, 1, 10}] Table[Det[M[d] - x*IdentityMatrix[d]], {d, 1, 10}] a = Join[{M[1]}, Table[CoefficientList[Det[ M[d] - x*IdentityMatrix[d]], x], {d, 1, 10}]] Flatten[a] MatrixForm[a]
CROSSREFS
Sequence in context: A099390 A297477 A370030 * A368514 A289229 A263097
KEYWORD
tabl,uned,sign
AUTHOR
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 1 20:04 EDT 2024. Contains 372176 sequences. (Running on oeis4.)