OFFSET
0,5
COMMENTS
Sum of the positive differences of the parts in the partitions of n into two parts such that the smaller part divides the larger (see example).
FORMULA
EXAMPLE
a(10) = 14; The partitions of 10 into two parts such that the smaller divides the larger are (1,9), (2,8), and (5,5). The sum of the positive differences of the parts is then (9-1) + (8-2) + (5-5) = 14.
MATHEMATICA
Join[{0}, Table[n (1 + DivisorSigma[0, n]) - 2*DivisorSigma[1, n], {n, 100}]]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Jan 16 2022
STATUS
approved