OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{i=1..floor(n/2)} sigma(i) + sigma(n-i), where sigma(n) is the sum of divisors of n (A000203).
a(n) = ((n+1) mod 2) * sigma(floor(n/2)) + Sum_{i=1..n-1} sigma(i), where sigma(n) is the sum of divisors of n (A000203).
a(n) = A024916(n-1) for odd n >= 3, a(n) = A024916(n-1) + A000203(n/2) for even n. - Amiram Eldar, Dec 27 2024
EXAMPLE
a(4) = 11; 4 has two partitions into 2 parts, (3,1) and (2,2). The total sum of all divisors of the parts is sigma(3) + sigma(1) + sigma(2) + sigma(2) = 4 + 1 + 3 + 3 = 11.
MAPLE
N:= 100: # for a(1) ... a(N)
S:= map(numtheory:-sigma, [$1..N]):
T:= ListTools:-PartialSums(S):
[0, seq(T[i-1]+`if`(i::even, S[i/2], 0), i=2..N)]; # Robert Israel, Apr 29 2020
MATHEMATICA
Table[Sum[DivisorSigma[1, i] + DivisorSigma[1, n - i], {i, Floor[n/2]}], {n, 80}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wesley Ivan Hurt, Apr 27 2020
STATUS
approved