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.

A110033 A characteristic triangle for the Fibonacci numbers.

Original entry on oeis.org

1, -1, 1, 1, -3, 1, 0, 3, -8, 1, 0, 0, 9, -21, 1, 0, 0, 0, 24, -55, 1, 0, 0, 0, 0, 64, -144, 1, 0, 0, 0, 0, 0, 168, -377, 1, 0, 0, 0, 0, 0, 0, 441, -987, 1, 0, 0, 0, 0, 0, 0, 0, 1155, -2584, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3025, -6765, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7920, -17711, 1
Offset: 0

Views

Author

Paul Barry, Jul 08 2005

Keywords

Examples

			Rows begin
1;
-1,1;
1,-3,1;
0,3,-8,1;
0,0,9,-21,1;
0,0,0,24,-55,1;
0,0,0,0,64,-144,1;
0,0,0,0,0,168,-377,1;
		

Formula

Form the n X n Hankel matrices F(i+j-1), 1<=i, j<=n for the Fibonacci numbers and take the characteristic polynomials of these matrices. Triangle rows give coefficients of these characteristic polynomials. (Construction described by Michael Somos in A064831). Diagonal is (-1)^n*F(2n+2). Subdiagonal is A064831. Row sums are A110034. The unsigned matrix has row sums A110035.