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.

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

Original entry on oeis.org

1, 2, 4, 3, 6, 6, 4, 8, 8, 12, 5, 10, 10, 15, 10, 6, 12, 12, 18, 12, 24, 7, 14, 14, 21, 14, 28, 14, 8, 16, 16, 24, 16, 32, 16, 32, 9, 18, 18, 27, 18, 36, 18, 36, 27, 10, 20, 20, 30, 20, 40, 20, 40, 30, 40, 11, 22, 22, 33, 22, 44, 22, 44, 33, 44, 22
Offset: 1

Views

Author

Gary W. Adamson, Aug 03 2008

Keywords

Comments

Row sums = A143274: (1, 6, 15, 32, 50, 84, ...).

Examples

			First few rows of the triangle =
  1;
  2,  4;
  3,  6,  6;
  4,  8,  8, 12;
  5, 10, 10, 15, 10;
  6, 12, 12, 18, 12, 24;
  7, 14, 14, 21, 14, 28, 14;
  8, 16, 16, 24, 16, 32, 16, 32;
  ...
T(6,3) = 12 = 6*d(3) = 6*2, where A000005 = d(k) = (1, 2, 3, 2, 2, 4, 2, 4, 3, ...).
		

Crossrefs

Programs

  • PARI
    tabl(nn) = for (n=1, nn, for (k=1, n, print1(n*numdiv(k), ", "))); \\ Michel Marcus, Mar 19 2016

Formula

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

Extensions

a(48) = 20 inserted by Georg Fischer, Jun 05 2023