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.

A269065 Irregular triangle read by rows: row n lists divisors of n-th composite number.

Original entry on oeis.org

1, 2, 4, 1, 2, 3, 6, 1, 2, 4, 8, 1, 3, 9, 1, 2, 5, 10, 1, 2, 3, 4, 6, 12, 1, 2, 7, 14, 1, 3, 5, 15, 1, 2, 4, 8, 16, 1, 2, 3, 6, 9, 18, 1, 2, 4, 5, 10, 20, 1, 3, 7, 21, 1, 2, 11, 22, 1, 2, 3, 4, 6, 8, 12, 24, 1, 5, 25, 1, 2, 13, 26, 1, 3, 9, 27, 1, 2, 4, 7, 14, 28, 1, 2, 3, 5, 6, 10, 15, 30, 1, 2, 4, 8, 16, 32, 1, 3, 11, 33, 1, 2, 17, 34
Offset: 1

Views

Author

Ilya Gutkovskiy, Feb 21 2016

Keywords

Comments

Subsequence of A027750.
Row sums give A073255.
Right border gives A002808.

Examples

			Triangle begins:
1,  2,  4;
1,  2,  3,  6;
1,  2,  4,  8;
1,  3,  9;
1,  2,  5,  10;
1,  2,  3,  4,  6,  12;
1,  2,  7,  14;
1,  3,  5,  15
1,  2,  4,  8,  16;
1,  2,  3,  6,  9,  18;
1,  2,  4,  5,  10, 20;
1,  3,  7,  21;
1,  2,  11, 22;
1,  2,  3,  4,  6,  8,  12, 24;
1,  5,  25;
1,  2,  13, 26;
1,  3,  9,  27;
1,  2,  4,  7,  14, 28;
1,  2,  3,  5,  6,  10, 15, 30;
1,  2,  4,  8,  16, 32;
1,  3,  11, 33;
1,  2,  17, 34;
...
		

Crossrefs

Cf. A002808, A027750, A035004 (row length), A133021, A133031, A138881.

Programs

  • Mathematica
    Flatten[Table[Divisors[Composite[n]], {n, 22}]]
  • PARI
    tabf(nn) =  forcomposite(c=1, nn, print(divisors(c), ", ")); \\ Michel Marcus, Feb 21 2016
Showing 1-1 of 1 results.