login
A379461
Irregular triangle read by rows in which row n lists the divisors e of n such that d < e < 2*d and d divides n, or 0 if such divisors do not exist.
2
0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 4, 6, 0, 0, 5, 0, 0, 3, 9, 0, 5, 0, 0, 0, 3, 4, 6, 8, 12, 0, 0, 0, 7, 0, 3, 5, 6, 10, 15, 0, 0, 0, 0, 7, 3, 4, 6, 9, 12, 18, 0, 0, 0, 5, 8, 10, 0, 3, 7, 21, 0, 0, 5, 9, 15, 0, 0, 3, 4, 6, 8, 12, 16, 24, 0, 0, 0, 0, 0, 3, 9, 27, 0
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 *)
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