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.

A193592 Triangle read by rows having n-th row 1, n, n-1, n-2,..., 2, 1 for n>=0.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 3, 2, 1, 1, 4, 3, 2, 1, 1, 5, 4, 3, 2, 1, 1, 6, 5, 4, 3, 2, 1, 1, 7, 6, 5, 4, 3, 2, 1, 1, 8, 7, 6, 5, 4, 3, 2, 1, 1, 9, 8, 7, 6, 5, 4, 3, 2, 1, 1, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 1, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 1, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1
Offset: 0

Views

Author

Clark Kimberling, Jul 31 2011

Keywords

Comments

The triangle with its first column removed is A004736. - Hartmut F. W. Hoft, Jun 05 2017

Examples

			Triangle begins:
  1
  1   1
  1   2   1
  1   3   2   1
  1   4   3   2   1
		

Crossrefs

Programs

  • Mathematica
    a193592[n_] := Map[Prepend[Range[#, 1, -1], 1]&, Range[0, n]]
    Flatten[a193592[12]] (* data *)
    TableForm[a193592[4]] (* triangle *) (* Hartmut F. W. Hoft, Jun 05 2017 *)

Extensions

Corrected and added more terms by Hartmut F. W. Hoft, Jun 05 2017