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.

A106246 Number triangle T(n,k)=C(n,k)C(2,n-k).

Original entry on oeis.org

1, 2, 1, 1, 4, 1, 0, 3, 6, 1, 0, 0, 6, 8, 1, 0, 0, 0, 10, 10, 1, 0, 0, 0, 0, 15, 12, 1, 0, 0, 0, 0, 0, 21, 14, 1, 0, 0, 0, 0, 0, 0, 28, 16, 1, 0, 0, 0, 0, 0, 0, 0, 36, 18, 1, 0, 0, 0, 0, 0, 0, 0, 0, 45, 20, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 22, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 24, 1, 0, 0, 0, 0, 0, 0
Offset: 0

Views

Author

Paul Barry, Apr 26 2005

Keywords

Comments

Row sums are C(n+2,2)=A000217(n+1). Diagonal sums are A106247. Subdiagonal is 2(n+1)=A005843(n+1). Second subdiagonal is A000217(n+1).

Examples

			Triangle begins
1;
2,1;
1,4,1;
0,3,6,1;
0,0,6,8,1;
0,0,0,10,10,1;
		

Crossrefs

Cf. A007318, A167194. [From Mats Granvik, Oct 30 2009]

Programs

  • Mathematica
    Flatten[Table[Binomial[n,k]Binomial[2,n-k],{n,0,20},{k,0,n}]] (* Harvey P. Dale, Jan 28 2016 *)

Formula

T(n,k)=A007318*A167194. [From Mats Granvik, Oct 30 2009]