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!)
A124034 Tri-antidiagonal matrices of central ones with upper negative one to give a triangular sequence: first element is negative one. k=1;m(n,m,d)=If[n + m - 1 == d && n > 1, k, If[n + m ==d, -1, If[n + m - 2 == d, -1, If[n == 1 && m == d, -k, 0]]]]. 0
-1, -1, -1, 2, 2, 1, 1, 1, 1, -1, 1, 0, -1, 2, 1, 2, 0, 0, 4, 1, -1, -1, 0, -1, -6, -4, 2, 1, 1, 1, -1, -7, -3, 7, 1, -1, -2, -2, -1, 8, 6, -12, -7, 2, 1, -1, -1, -2, 10, 3, -23, -6, 10, 1, -1, -1, 0, 2, -12, -7, 34, 22, -18, -10, 2, 1, -2, 0, 0, -16, -4, 52, 16, -48, -9, 13, 1, -1, 1, 0, 2, 20, 13, -70, -46, 78, 47, -24, -13, 2, 1, -1, -1, 2, 22, 9 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Matrices: 1 X 1 {{-1}}, 2 X 2 {{-1, -1}, {1, -1}}, 3 X 3 {{0, -1, -1}, {-1, 1, -1}, {1, -1, 0}}, 4 X 4 {{0, 0, -1, -1}, {0, -1, 1, -1}, {-1, 1, -1, 0}, {1, -1, 0, 0}}, 5 X 5 {{0,0, 0, -1, -1}, {0, 0, -1, 1, -1}, {0, -1, 1, -1, 0}, {-1, 1, -1, 0, 0}, {1, -1, 0, 0, 0}}
LINKS
FORMULA
k=1; m(n,m,d)=If[n + m - 1 == d && n > 1, k, If[n + m ==d, -1, If[n + m - 2 == d, -1, If[n == 1 && m == d, -k, 0]]]]
EXAMPLE
Triangular sequence:
{-1},
{-1, -1},
{2, 2, 1},
{1, 1, 1, -1},
{1, 0, -1, 2, 1},
{2, 0, 0, 4,1, -1},
{-1, 0, -1, -6, -4, 2, 1},
{1, 1, -1, -7, -3, 7, 1, -1},
{-2, -2, -1, 8, 6, -12, -7, 2, 1},
{-1, -1, -2, 10, 3, -23, -6, 10, 1, -1},
{-1, 0, 2, -12, -7, 34, 22, -18, -10, 2, 1}
MATHEMATICA
k = 1; An[d_] := Table[If[n + m - 1 == d && n > 1, k, If[n + m == d, -1, If[n + m - 2 == d, -1, If[n == 1 &&m == d, -k, 0]]]], {n, 1, d}, {m, 1, d}]; Join[An[1], Table[CoefficientList[CharacteristicPolynomial[An[d], x], x], {d, 1, 20}]]; Flatten[%]
CROSSREFS
Sequence in context: A237422 A102552 A131341 * A332029 A211312 A085978
KEYWORD
uned,sign,tabl
AUTHOR
Roger L. Bagula, Nov 02 2006
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)