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.

A177822 Sub-triangle of A008292: terms with square indices.

Original entry on oeis.org

1, 1, 1, 1, 4, 1, 11, 1, 26, 1, 1, 57, 57, 1, 120, 1191, 1, 247, 15619, 1, 502, 156190, 1, 1013, 1310354, 1, 1, 2036, 9738114, 2036
Offset: 0

Views

Author

Roger L. Bagula, Dec 13 2010

Keywords

Comments

Row sums are {1, 2, 5, 12, 28, 115, 1312, 15867, 156693, 1311369, 9742187,...}.

Examples

			{1},
{1, 1},
{1, 4},
{1, 11},
{1, 26, 1},
{1, 57, 57},
{1, 120, 1191},
{1, 247, 15619},
{1, 502, 156190},
{1, 1013, 1310354, 1},
{1, 2036, 9738114, 2036}
		

Crossrefs

Programs

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

Extensions

Edited by N. J. A. Sloane, Jan 01 2011