OFFSET
1,2
COMMENTS
In a sublist of divisors of n the terms are in increasing order and two adjacent terms are the same two adjacent terms in the list of divisors of n.
The 2-dense sublists of divisors of n are the maximal sublists whose terms increase by a factor of at most 2.
At least for the first 1000 rows the row lengths give A237271.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10607 (rows 1..3500 of triangle, flattened).
EXAMPLE
Triangle begins:
1;
2;
1, 3;
4;
1, 5;
6;
1, 7;
8;
1, 3, 9;
2, 10;
1, 11;
12;
1, 13;
2, 14;
1, 5, 15;
16;
...
For n = 10 the list of divisors of 10 is [1, 2, 5, 10]. There are two 2-dense sublists of divisors of 10, they are [1, 2] and [5, 10]. In the first 2-dense sublist the largest number is 2, so T(10,1) = 2. In the second 2-dense sublist the largest number is 10, so T(10,2) = 10.
MATHEMATICA
A390496row[n_] := Map[Max, Split[Divisors[n], #2 <= 2*# &]];
Array[A390496row, 50] (* Paolo Xausa, Nov 23 2025 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Nov 15 2025
STATUS
approved
