OFFSET
1,3
COMMENTS
sigma(n) = sum of divisors of n: A000203 (also called sigma_1(n)).
LINKS
FORMULA
From Amiram Eldar, Mar 30 2024: (Start)
a(n) = 0 if and only if n is in A028982. (End)
EXAMPLE
a(14) = 56 because sigma(14) = 24 and the sum of the 6 even divisors {2, 4, 6, 8, 12, 24} is 56.
MATHEMATICA
Table[Total[Select[Divisors[DivisorSigma[1, n]], EvenQ[ # ]&]], {n, 53}]
PROG
(PARI) A193336(n) = { my(s=sigma(n)); sumdiv(s, d, (!(d%2))*d); }; \\ Antti Karttunen, Nov 18 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jul 23 2011
EXTENSIONS
More terms from Antti Karttunen, Nov 18 2017
STATUS
approved