login
A193337
Sum of odd divisors of sigma(n).
4
1, 4, 1, 8, 4, 4, 1, 24, 14, 13, 4, 8, 8, 4, 4, 32, 13, 56, 6, 32, 1, 13, 4, 24, 32, 32, 6, 8, 24, 13, 1, 104, 4, 40, 4, 112, 20, 24, 8, 78, 32, 4, 12, 32, 56, 13, 4, 32, 80, 128, 13, 57, 40, 24, 13, 24, 6, 78, 24, 32, 32, 4, 14, 128, 32, 13, 18, 104, 4, 13, 13, 336, 38, 80, 32, 48, 4, 32, 6, 128, 133
OFFSET
1,2
COMMENTS
sigma(n) = sum of divisors of n: A000203 (also called sigma_1(n)).
FORMULA
a(n) = A000593(A000203(n)). - Michel Marcus, Jan 14 2014
a(n) + A193336(n) = A051027(n). - Antti Karttunen, Nov 18 2017
a(n) = A051027(n) if and only if n is in A028982. - Amiram Eldar, Mar 30 2024
EXAMPLE
a(8) = 24 because sigma(8) = 15 and the sum of the 4 odd divisors { 1, 3, 5, 15} is 24.
MATHEMATICA
Table[Total[Select[Divisors[DivisorSigma[1, n]], OddQ[ # ]&]], {n, 60}]
PROG
(PARI) a(n) = sumdiv(sigma(n), d, (d%2)*d); \\ Michel Marcus, Jan 14 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jul 23 2011
EXTENSIONS
More terms from Antti Karttunen, Nov 18 2017
STATUS
approved