OFFSET
1,1
COMMENTS
See A066272 for definition of anti-divisor.
a(12) > 6*10^9. - Donovan Johnson, Feb 04 2012
PROG
(Python)
from sympy import divisors, totient
A074713 = [n for n in range(1, 10**5) if sum([2*d for d in divisors(n) if n > 2*d and n%(2*d)] + [d for d in divisors(2*n-1) if n > d >=2 and n%d] + [d for d in divisors(2*n+1) if n > d >=2 and n%d]) == totient(n)] # Chai Wah Wu, Aug 12 2014
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Jason Earls, Sep 04 2002
EXTENSIONS
Offset corrected and a(10)-a(11) from Donovan Johnson, Feb 04 2012
STATUS
approved