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.

A128228 A128229 * A002260.

Original entry on oeis.org

1, 2, 2, 3, 6, 3, 4, 8, 12, 4, 5, 10, 15, 20, 5, 6, 12, 18, 24, 30, 6, 7, 14, 21, 28, 35, 42, 7, 8, 16, 24, 32, 40, 48, 56, 8, 9, 18, 27, 36, 45, 54, 63, 72, 9, 10, 20, 30, 40, 50, 60, 70, 80, 90, 10
Offset: 1

Views

Author

Gary W. Adamson, Feb 19 2007

Keywords

Comments

Row sums = A006000: (1, 4, 12, 28, 55, 96, 154,...).

Examples

			First few rows of the triangle are:
1;
2, 2;
3, 6, 3;
4, 8, 12, 4;
5, 10, 15, 20, 5;
6, 12, 18, 24, 30, 6;
7, 14, 21, 28, 35, 42, 7;
...
		

Crossrefs

Programs

  • Mathematica
    (* first n rows of the triangle *)
    a128228[n_] := Table[If[r==q, r, q r], {r, 1, n}, {q, 1, r}]
    Flatten[a128228[10]] (* data *)
    TableForm[a128228[7]] (* triangle *)
    (* Hartmut F. W. Hoft, Jun 10 2017 *)

Formula

A128229 * A002260 as infinite lower triangular matrices.
Triangle, n * (each term of A128227).
T(n,k) = k*n if 1<=kHartmut F. W. Hoft, Jun 10 2017