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.

A122908 A central binomial scaling of the Riordan array (1+x,x) (A097806).

Original entry on oeis.org

1, 1, 1, 0, 1, 2, 0, 0, 2, 3, 0, 0, 0, 3, 6, 0, 0, 0, 0, 6, 10, 0, 0, 0, 0, 0, 10, 20, 0, 0, 0, 0, 0, 0, 20, 35, 0, 0, 0, 0, 0, 0, 0, 35, 70, 0, 0, 0, 0, 0, 0, 0, 0, 70, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 252
Offset: 0

Views

Author

Paul Barry, Sep 18 2006

Keywords

Comments

Row sums are A050168. Diagonal sums are A001045 doubled. Row sums of inverse are 1/C(2n,n) aerated. Applications to other sequences are obvious.

Examples

			Triangle begins
.1,
.1, 1,
.0, 1, 2,
.0, 0, 2, 3,
.0, 0, 0, 3, 6,
.0, 0, 0, 0, 6, 10,
.0, 0, 0, 0, 0, 10, 20,
.0, 0, 0, 0, 0, 0, 20, 35,
.0, 0, 0, 0, 0, 0, 0, 35, 70,
.0, 0, 0, 0, 0, 0, 0, 0, 70, 126,
.0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 252
		

Formula

Number triangle T(n,k)=C(k,floor(k/2))*sum{j=0..n, (-1)^(n-j)C(n,j)C(j+1,k+1)}