login
A389591
Sum of the divisors r of n such that r is not greater than twice the adjacent previous divisor of n.
3
0, 2, 0, 6, 0, 11, 0, 14, 0, 12, 0, 27, 0, 16, 5, 30, 0, 38, 0, 41, 0, 24, 0, 59, 0, 28, 0, 55, 0, 71, 0, 62, 0, 36, 7, 90, 0, 40, 0, 89, 0, 95, 0, 72, 29, 48, 0, 123, 0, 62, 0, 84, 0, 119, 0, 119, 0, 60, 0, 167, 0, 64, 9, 126, 0, 143, 0, 108, 0, 103, 0, 194, 0, 76, 30
OFFSET
1,2
COMMENTS
Sum of the divisors of n except the smallest numbers of the 2-dense sublists of divisors of n.
FORMULA
a(n) = A000203(n) - A379379(n). (Conjectured).
EXAMPLE
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. The sum of the numbers that are not the smallest number in the second sublist is 26 + 39 + 78 = 143. The total sum is 11 + 143 = 154, so a(78) = 154.
MATHEMATICA
A389591[n_] := Total[Map[Rest, Split[Divisors[n], #2 <= 2*# &]], 2];
Array[A389591, 100] (* Paolo Xausa, Oct 21 2025 *)
PROG
(PARI) a(n) = my(d=divisors(n)); sum(k=1, #d, if ((k>1) && (d[k]<=2*d[k-1]), d[k])); \\ Michel Marcus, Oct 09 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Oct 08 2025
EXTENSIONS
Extra 0 removed by Sean A. Irvine, Oct 16 2025
a(53) = 0 added and more terms from Paolo Xausa, Oct 21 2025
STATUS
approved