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.

Showing 1-1 of 1 results.

A130270 Triangle read by rows, T(n) followed by 1, 2, 3, ..., n-1.

Original entry on oeis.org

1, 3, 1, 6, 1, 2, 10, 1, 2, 3, 15, 1, 2, 3, 4, 21, 1, 2, 3, 4, 5, 28, 1, 2, 3, 4, 5, 6, 36, 1, 2, 3, 4, 5, 6, 7, 45, 1, 2, 3, 4, 5, 6, 7, 8
Offset: 1

Views

Author

Gary W. Adamson, May 18 2007

Keywords

Comments

Row sums = n^2.

Examples

			First few rows of the triangle:
   1;
   3, 1;
   6, 1, 2;
  10, 1, 2, 3;
  15, 1, 2, 3, 4;
  ...
Row 4 = (10, 1, 2, 3) = differences of row 4 of A130269: (10, 11, 13, 16).
		

Crossrefs

Programs

  • Mathematica
    Table[Join[{(n(n+1))/2,Range[n-1]}],{n,10}]//Flatten (* Harvey P. Dale, Dec 31 2021 *)

Formula

Triangle read by rows, T(n) followed by 1,2,3,...,n-1. Row differences of triangle A130269 starting from the left.
Showing 1-1 of 1 results.