login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A193388
Sum of even divisors of phi(n).
1
0, 0, 2, 2, 6, 2, 8, 6, 8, 6, 12, 6, 24, 8, 14, 14, 30, 8, 26, 14, 24, 12, 24, 14, 36, 24, 26, 24, 48, 14, 48, 30, 36, 30, 56, 24, 78, 26, 56, 30, 84, 24, 64, 36, 56, 24, 48, 30, 64, 36, 62, 56, 84, 26, 84, 56, 78, 48, 60, 30, 144, 48, 78, 62, 120, 36, 96
OFFSET
1,3
LINKS
FORMULA
a(n) = A146076(A000010(n)) = A062402(n) - A193454(n). - Antti Karttunen, Dec 05 2017
EXAMPLE
a(13) = 24 because phi(13) = 12 and the sum of the 4 even divisors { 2, 4, 6, 12} is 24.
MATHEMATICA
Table[Total[Select[Divisors[EulerPhi[n]], EvenQ[ # ]&]], {n, 58}]
PROG
(PARI) A193388(n) = { my(s=eulerphi(n)); sumdiv(s, d, (!(d%2))*d); }; \\ Antti Karttunen, Dec 05 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jul 25 2011
STATUS
approved