OFFSET
1,2
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..12242 (rows 1..4000 of triangle, flattened).
EXAMPLE
Triangle begins:
0;
2;
0, 0;
6;
0, 0;
11;
0, 0;
14;
0, 0, 0;
2, 10;
0, 0;
27;
0, 0;
2, 14;
0, 5, 0;
30;
...
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]. The sum of the numbers that are not the smallest number in the first sublist is 2 + 3 + 6 = 11, so T(78, 1) = 11. The sum of the numbers that are not the smallest number in the second sublist is 26 + 39 + 78 = 143, so T(78, 2) = 143.
MATHEMATICA
A389592row[n_] := Map[Total[Rest[#]] &, Split[Divisors[n], #2 <= 2*# &]];
Array[A389592row, 50] (* Paolo Xausa, Oct 21 2025 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Oct 08 2025
STATUS
approved
