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.

A252501 Triangle T read by rows: T(n,k) = binomial(2*n+1,k)*binomial(n,k), n>=0, 0<=k<=n.

Original entry on oeis.org

1, 1, 3, 1, 10, 10, 1, 21, 63, 35, 1, 36, 216, 336, 126, 1, 55, 550, 1650, 1650, 462, 1, 78, 1170, 5720, 10725, 7722, 1716, 1, 105, 2205, 15925, 47775, 63063, 35035, 6435, 1, 136, 3808, 38080, 166600, 346528, 346528, 155584, 24310
Offset: 0

Views

Author

L. Edson Jeffery, Dec 17 2014

Keywords

Examples

			Triangle T begins:
.1
.1.....3
.1....10.....10
.1....21.....63......35
.1....36....216.....336......126
.1....55....550....1650.....1650......462
.1....78...1170....5720....10725.....7722.....1716
.1...105...2205...15925....47775....63063....35035.....6435
.1...136...3808...38080...166600...346528...346528...155584...24310
		

Crossrefs

Cf. A000012 (col. 1), A014105 (col. 2), A001700 (diag), A045721 (row sums).

Programs

  • Mathematica
    Flatten[Table[Binomial[2*n + 1, k]*Binomial[n, k], {n, 0, 8}, {k, 0, n}]] (* Replace Flatten[] with Grid[] to get the triangle. *)