OFFSET
1,3
FORMULA
EXAMPLE
a(6) = 17; 6 has two partitions into distinct parts, (5,1) and (4,2). The total sum of divisors of all the parts is then sigma(5) + sigma(1) + sigma(4) + sigma(2) = 6 + 1 + 7 + 3 = 17.
MATHEMATICA
Table[Sum[DivisorSigma[1, i] + DivisorSigma[1, n - i], {i, Floor[(n - 1)/2]}], {n, 80}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Apr 27 2020
STATUS
approved