OFFSET
1,6
COMMENTS
The number of positive terms in row n is A174903(n).
The indices of the rows that contain a zero give A174905.
The indices of the rows that contain positive integers give A005279.
The positive integers in the n-th row are the missing divisors of n in the n-th row of A379374.
The odd integers in the n-th row are the missing odd divisors of n in the n-th row of A379288.
EXAMPLE
Triangle begins:
0;
0;
0;
0;
0;
3;
0;
0;
0;
0;
0;
3, 4, 6;
0;
0;
5;
0;
0;
3, 9;
0;
5;
...
From Omar E. Pol, Apr 19 2025: (Start)
For n = 12 there are three divisors m of 12 such that there is a divisor d of 12 with d < m < 2*d. Those divisors are 3, 4 and 6 as shown below:
d < m < 2*d
--------------------
1 2
2 3 4
3 4 6
4 6 8
6 12
12 24
.
So the 12th row of the triangle is [3, 4, 6]. (End)
MATHEMATICA
row[n_] := Module[{d = Partition[Divisors[n], 2, 1], e}, e = Select[d, #[[2]] < 2*#[[1]] &][[;; , 2]]; If[e == {}, {0}, e]]; Table[row[n], {n, 1, 55}] // Flatten (* Amiram Eldar, Dec 23 2024 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Dec 23 2024
EXTENSIONS
More terms from Amiram Eldar, Dec 23 2024
Name changed by Omar E. Pol, Feb 05 2025
STATUS
approved
