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.

A134403 Triangle read by rows: row n consists of (n, n, (n+1), (n+2), (n+3), ...).

Original entry on oeis.org

0, 1, 1, 2, 2, 3, 3, 3, 4, 5, 4, 4, 5, 6, 7, 5, 5, 6, 7, 8, 9, 6, 6, 7, 8, 9, 10, 11, 7, 7, 8, 9, 10, 11, 12, 13, 8, 8, 9, 10, 11, 12, 13, 14, 15, 9, 9, 10, 11, 12, 13, 14, 15, 16, 17, 10, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 11, 11, 12, 13, 14, 15, 16
Offset: 0

Views

Author

Gary W. Adamson, Oct 23 2007

Keywords

Comments

Row sums = A005449: (0, 2, 7, 15, 26, 40, 57, ...).

Examples

			First few rows of the triangle:
  0;
  1, 1;
  2, 2, 3;
  3, 3, 4, 5;
  4, 4, 5, 6,  7;
  5, 5, 6, 7,  8,  9;
  6, 6, 7, 8,  9, 10, 11;
  7, 7, 8, 9, 10, 11, 12, 13;
  ...
		

Crossrefs

Programs

  • Mathematica
    Table[{n,n+Range[0,n-1]},{n,0,20}]//Flatten (* Harvey P. Dale, Dec 26 2020 *)

Formula

Extensions

Leading term changed from 1 to 0 by N. J. A. Sloane, Apr 06 2008
Corrected and extended by Harvey P. Dale, Dec 26 2020