OFFSET
1,3
COMMENTS
Observation: the sequence of the number of odd terms in row n coincides with at least the first 10000 terms of A237271.
The observation is true for all numbers. For a proof see A379288. - Hartmut F. W. Hoft, Jan 25 2025
EXAMPLE
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;
...
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 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Dec 21 2024
EXTENSIONS
More terms from Alois P. Heinz, Dec 21 2024
STATUS
approved
