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.

A202148 Sum of rows of the triangle in A080381.

Original entry on oeis.org

1, 2, 4, 8, 12, 32, 36, 100, 132, 392, 384, 1168, 1500, 5332, 5284, 15740, 16804, 60896, 62872, 222948, 243780, 927176, 876004, 2999432, 3284180, 12706832, 12636656, 45043700, 46679920, 176783132, 177597976, 652158968, 700632804, 2696835032, 2735898216
Offset: 0

Views

Author

Jacques ALARDET, Dec 12 2011

Keywords

Examples

			a(0)= 1.
a(4)= 1 + 2 + 6 + 2 + 1 = 12.
		

Crossrefs

Cf. A080381.

Programs

  • Mathematica
    Table[Total[Table[GCD[Binomial[n, j], Binomial[n, Floor[n/2]]], {j, 0, n}]], {n, 0, 50}]