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.

A123265 Fibonacci-Lucas triangle read by rows.

Original entry on oeis.org

2, 1, 2, 3, 3, 2, 4, 8, 5, 2, 7, 15, 15, 7, 2, 11, 30, 35, 24, 9, 2, 18, 56, 80, 66, 35, 11, 2, 29, 104, 171, 170, 110, 48, 13, 2, 47, 189, 355, 407, 315, 169, 63, 15, 2, 76, 340, 715, 932, 832, 532, 245, 80, 17, 2
Offset: 0

Views

Author

Philippe Deléham, Nov 07 2006

Keywords

Comments

As a Riordan array, this is ((2-x)/(1-x-x^2),x/(1-x-x^2)) . Row sums form A078343, diagonals sums form A014551.

Examples

			Triangle begins:
2;
1, 2;
3, 3, 2;
4, 8, 5, 2;
7, 15, 15, 7, 2;
11, 30, 35, 24, 9, 2;
18, 56, 80, 66, 35, 11, 2;
29, 104, 171, 170, 110, 48, 13, 2;
		

Crossrefs

Formula

T(n,k)=T(n-1,k-1)+T(n-1,k)+T(n-2,k), T(0,0)=2, T(1,0)=1, T(n,k)=0 if k<0 or if k>n . T(n,0)=L(n)=A000032(n),Lucas numbers.