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.

A143271 Triangle read by rows: A130209 * A000012 * A127648.

Original entry on oeis.org

1, 2, 4, 2, 4, 6, 3, 6, 9, 12, 2, 4, 6, 8, 10, 4, 8, 12, 16, 20, 24, 2, 4, 6, 8, 10, 12, 14, 4, 8, 12, 16, 20, 24, 28, 32, 3, 6, 9, 12, 15, 18, 21, 24, 27, 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 6, 12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72
Offset: 1

Views

Author

Gary W. Adamson, Aug 03 2008

Keywords

Comments

Row sums = A143272: (1, 6, 12, 30, 30, 84, 56, ...).
Left border = A000005: (1, 2, 2, 3, 2, 4, 2, 4, 3, ...).

Examples

			First few rows of the triangle =
  1;
  2, 4;
  2, 4,  6;
  3, 6,  9, 12;
  2, 4,  6,  8, 10;
  4, 8, 12, 16, 20, 24;
  2, 4,  6,  8, 10, 12, 14;
  ...
T(5,3) = 6 = 2*3 = d(5)*3.
		

Crossrefs

Programs

  • PARI
    tabl(nn) = for (n=1, nn, for (k=1, n, print1(numdiv(n)*k, ", "))); \\ Michel Marcus, Jun 05 2023

Formula

T(n,k) = d(n)*k.

Extensions

a(62) corrected by Georg Fischer, Jun 05 2023