A307662 Triangle T(i,j=1..i) read by rows which contain the naturally ordered divisors-or-ones of the row number i.
1, 1, 2, 1, 1, 3, 1, 2, 1, 4, 1, 1, 1, 1, 5, 1, 2, 3, 1, 1, 6, 1, 1, 1, 1, 1, 1, 7, 1, 2, 1, 4, 1, 1, 1, 8, 1, 1, 3, 1, 1, 1, 1, 1, 9, 1, 2, 1, 1, 5, 1, 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 1, 2, 3, 4, 1, 6, 1, 1, 1, 1, 1, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 13
Offset: 1
Examples
Triangle begins: 1, 1, 2, 1, 1, 3, 1, 2, 1, 4, 1, 1, 1, 1, 5, 1, 2, 3, 1, 1, 6, 1, 1, 1, 1, 1, 1, 7, 1, 2, 1, 4, 1, 1, 1, 8, 1, 1, 3, 1, 1, 1, 1, 1, 9, 1, 2, 1, 1, 5, 1, 1, 1, 1,10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,11, 1, 2, 3, 4, 1, 6, 1, 1, 1, 1, 1,12, ...
Links
- I. V. Serov, Rows n = 1..131 of triangle, flattened
Programs
-
Mathematica
Table[Map[If[Mod[n, #] == 0, #, 1] &, Range@ n], {n, 13}] // Flatten (* Michael De Vlieger, Apr 23 2019 *)
-
PARI
row(n) = vector(n, k, if ((n % k) == 0, k, 1)); \\ Michel Marcus, Apr 21 2019
Comments