OFFSET
1,5
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:
0;
0
0, 0;
4;
0, 0;
6;
0, 0;
12;
0, 0, 9;
0, 10;
0, 0;
22;
0, 0;
0, 14;
0, 0, 15;
28;
...
For n = 78 the list of divisors of 78 is [1, 2, 3, 6, 13, 26, 39, 78]. There are two 2-dense sublists of divisors of 78, they are [1, 2, 3, 6] and [13, 26, 39, 78]. In the first 2-dense sublist the sum of composite numbers is 6, so T(78,1) = 6. In the second 2-dense sublist the sum of composite numbers is 26 + 39 + 78 = 143, so T(78,2) = 143.
MATHEMATICA
A390610row[n_] := Map[Total[Select[#, CompositeQ]] &, Split[Divisors[n], #2 <= 2*# &]];
Array[A390610row, 50] (* Paolo Xausa, Nov 18 2025 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Nov 12 2025
STATUS
approved
