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.

A085503 Sub-triangle of A008292: take every second term of every second row.

Original entry on oeis.org

1, 1, 1, 1, 66, 1, 1, 1191, 1191, 1, 1, 14608, 156190, 14608, 1, 1, 152637, 9738114, 9738114, 152637, 1, 1, 1479726, 423281535, 2275172004, 423281535, 1479726, 1, 1, 13824739, 15041229521, 311387598411
Offset: 0

Views

Author

Roger L. Bagula, Dec 13 2010

Keywords

Examples

			{1},
{1, 1},
{1, 66, 1},
{1, 1191, 1191, 1},
{1, 14608, 156190, 14608, 1},
{1, 152637, 9738114, 9738114, 152637, 1},
		

Crossrefs

Cf. A008292.

Programs

  • Mathematica
    << DiscreteMath`Combinatorica`
    a = Table[Table[Eulerian[n + 1, 2*m], {m, 0, Floor[n/2]}], {n, 0, 20, 2}];
    Flatten[%]