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.

A361748 Triangle T(n, k) of distinct positive integers, n > 0, k = 1..n, read by rows and filled in the greedy way such that T(n, k) is a multiple of T(n, 1).

Original entry on oeis.org

1, 2, 4, 3, 6, 9, 5, 10, 15, 20, 7, 14, 21, 28, 35, 8, 16, 24, 32, 40, 48, 11, 22, 33, 44, 55, 66, 77, 12, 36, 60, 72, 84, 96, 108, 120, 13, 26, 39, 52, 65, 78, 91, 104, 117, 17, 34, 51, 68, 85, 102, 119, 136, 153, 170, 18, 54, 90, 126, 144, 162, 180, 198, 216, 234, 252
Offset: 1

Views

Author

Rémy Sigrist, Mar 30 2023

Keywords

Comments

This sequence is a variant of A360371.
As a flat sequence, this is a permutation of the positive integers with inverse A361939.

Examples

			Triangle T(n, k) begins:
     1;
     2,  4;
     3,  6,  9;
     5, 10, 15, 20;
     7, 14, 21, 28, 35;
     8, 16, 24, 32, 40,  48;
    11, 22, 33, 44, 55,  66,  77;
    12, 36, 60, 72, 84,  96, 108, 120;
    13, 26, 39, 52, 65,  78,  91, 104, 117;
    17, 34, 51, 68, 85, 102, 119, 136, 153, 170;
    ...
		

Crossrefs

Cf. A360371, A361939 (inverse).

Programs

Formula

T(n, k) = k * T(n, 1) when T(n, 1) is a prime number.