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;
...
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