0, 1, 2, 2, 2, 2, 2, 3, 2, 4, 2, 4, 2, 4, 2, 4, 2, 5, 2, 4, 4, 4, 2, 6, 2, 4, 4, 4, 2, 6, 2, 5, 4, 4, 2, 8, 2, 4, 4, 6, 2, 6, 2, 6, 4, 4, 2, 8, 2, 5, 4, 6, 2, 6, 4, 6, 4, 4, 2, 10, 2, 4, 4, 6, 4, 6, 2, 6, 4, 6, 2, 9, 2, 4, 6, 6, 2, 8, 2, 8, 4, 4, 2, 10, 4, 4, 4, 6, 2, 10, 2, 6, 4, 4, 4, 10, 2, 5, 4, 8, 2, 8
Offset: 1
A375038
Irregular triangle read by rows T(n,k), n >= 2, k >= 1, in which row n lists the nonmiddle divisors of n.
Original entry on oeis.org
2, 1, 3, 1, 4, 1, 5, 1, 6, 1, 7, 1, 4, 8, 1, 9, 1, 2, 5, 10, 1, 11, 1, 2, 6, 12, 1, 13, 1, 2, 7, 14, 1, 15, 1, 2, 8, 16, 1, 17, 1, 2, 6, 9, 18, 1, 19, 1, 2, 10, 20, 1, 3, 7, 21, 1, 2, 11, 22, 1, 23, 1, 2, 3, 8, 12, 24, 1, 25, 1, 2, 13, 26, 1, 3, 9, 27, 1, 2, 14, 28
Offset: 2
Triangle begins starting in row n = 2:
2;
1, 3;
1, 4;
1, 5;
1, 6;
1, 7;
1, 4, 8;
1, 9;
1, 2, 5, 10;
1, 11;
1, 2, 6, 12;
...
For n = 12 the divisors of 12 are [1, 2, 3, 4, 6, 12] and the middle divisors are [3, 4], so the nonmiddle divisors are [1, 2, 6, 12], the same as the row n = 12 of the triangle.
The number of terms in row n is
A067743(n).
-
row[n_] := Select[Divisors[n], !(Sqrt[n/2] <= # < Sqrt[2*n]) &]; Table[row[n], {n, 2, 28}] // Flatten (* Amiram Eldar, Jul 29 2024 *)
A375037
Irregular triangle read by rows T(n,k), n >= 1, k >= 1, in which row n lists the divisors of n but every middle divisor is replaced with zero.
Original entry on oeis.org
0, 0, 2, 1, 3, 1, 0, 4, 1, 5, 1, 0, 0, 6, 1, 7, 1, 0, 4, 8, 1, 0, 9, 1, 2, 5, 10, 1, 11, 1, 2, 0, 0, 6, 12, 1, 13, 1, 2, 7, 14, 1, 0, 0, 15, 1, 2, 0, 8, 16, 1, 17, 1, 2, 0, 6, 9, 18, 1, 19, 1, 2, 0, 0, 10, 20, 1, 3, 7, 21, 1, 2, 11, 22, 1, 23, 1, 2, 3, 0, 0, 8, 12, 24
Offset: 1
Triangle begins:
0;
0, 2;
1, 3;
1, 0, 4;
1, 5;
1, 0, 0, 6;
1, 7;
1, 0, 4, 8;
1, 0, 9;
1, 2, 5, 10;
1, 11;
1, 2, 0, 0, 6, 12;
...
For n = 12 the divisors of 12 are [1, 2, 3, 4, 6, 12] and the middle divisors are [3, 4], but here the middle divisors are replaced with zeros, so the 12th row of the triangle is [1, 2, 0, 0, 6, 12].
The number of zeros in row n is
A067742(n).
The number of nonzero terms in row n is
A067743(n).
-
row[n_] := Divisors[n] /. {x_?(Sqrt[n/2] <= # < Sqrt[2*n] &) -> 0}; Table[row[n], {n, 1, 24}] // Flatten (* Amiram Eldar, Jul 29 2024 *)
Comments