login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A141679 Triangle of coefficients of the inverse of A058071. 0
1, -1, 1, -1, -1, 1, 0, -1, -1, 1, 0, 0, -1, -1, 1, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, 0, 0, 0, -1, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET

1,1

COMMENTS

The row sums are {1, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, ...}.

The inverse is a tridiagonal lower triangular matrix.

LINKS

Table of n, a(n) for n=1..66.

FORMULA

A058071(n,m)=If[m <= n, Fibonacci[n - m + 1]*Fibonacci[m + 1], 0]; t(n,m)=Fibonacci(n)*Inverse[A058071(n,m)].

EXAMPLE

{1},

{-1, 1},

{-1, -1, 1},

{0, -1, -1, 1},

{0, 0, -1, -1, 1},

{0, 0,0, -1, -1, 1},

{0, 0, 0, 0, -1, -1, 1},

{0, 0, 0, 0, 0, -1, -1, 1},

{0, 0, 0, 0, 0, 0, -1, -1, 1},

{0, 0, 0, 0, 0, 0, 0, -1, -1, 1},

{0, 0, 0, 0, 0, 0, 0, 0, -1, -1, 1}

MATHEMATICA

Clear[t, n, m, M] (*A058071*) t[n_, m_] = If[m <= n, Fibonacci[n - m + 1]*Fibonacci[m + 1], 0]; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]; M = Inverse[Table[Table[t[n, m], {m, 0, 10}], {n, 0, 10}]]; Table[Table[Fibonacci[n]*M[[n, m]], {m, 1, n}], {n, 1, 11}]; Flatten[%]

CROSSREFS

Cf. A058071.

Sequence in context: A129572 A070950 A071031 * A152904 A071033 A118102

Adjacent sequences:  A141676 A141677 A141678 * A141680 A141681 A141682

KEYWORD

tabl,sign

AUTHOR

Roger L. Bagula and Gary W. Adamson, Sep 07 2008

EXTENSIONS

Edited by N. J. A. Sloane, Jan 05 2009

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 20 18:12 EDT 2013. Contains 225464 sequences.