A379374 Irregular triangle read by rows in which row n lists the divisors of n except the divisors "e" described in A005279.
1, 1, 2, 1, 3, 1, 2, 4, 1, 5, 1, 2, 6, 1, 7, 1, 2, 4, 8, 1, 3, 9, 1, 2, 5, 10, 1, 11, 1, 2, 12, 1, 13, 1, 2, 7, 14, 1, 3, 15, 1, 2, 4, 8, 16, 1, 17, 1, 2, 6, 18, 1, 19, 1, 2, 4, 10, 20, 1, 3, 7, 21, 1, 2, 11, 22, 1, 23, 1, 2, 24, 1, 5, 25, 1, 2, 13, 26, 1, 3, 9, 27
Offset: 1
Examples
Triangle begins: 1; 1, 2; 1, 3; 1, 2, 4; 1, 5; 1, 2, 6; 1, 7; 1, 2, 4, 8; 1, 3, 9; 1, 2, 5, 10; 1, 11; 1, 2, 12; 1, 13; 1, 2, 7, 14; 1, 3, 15; 1, 2, 4, 8, 16; 1, 17; 1, 2, 6, 18; 1, 19; 1, 2, 4, 10, 20; ...
Crossrefs
Programs
-
Mathematica
row[n_] := Module[{d = Partition[Divisors[n], 2, 1]}, Join[{1}, Select[d, #[[2]] >= 2*#[[1]] &][[;; , 2]]]]; Table[row[n], {n, 1, 27}] // Flatten (* Amiram Eldar, Dec 22 2024 *)
Extensions
More terms from Alois P. Heinz, Dec 21 2024
Comments