OFFSET
1,2
COMMENTS
There are only 42 such numbers below 3*10^5. - M. F. Hasler, Apr 06 2013
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..200
EXAMPLE
For n=70, phi(70)=24 and 2 is a divisor of 70; since 24 | 70+2, the number n=70 is a term of this sequence.
PROG
(PARI) is(n)=issquarefree(n)&&sumdiv(n, d, (n+d)%eulerphi(n)==0) \\ Charles R Greathouse IV, Apr 02 2013
(PARI) is_A217741(n)={ my(p); issquarefree(n) && fordiv(n+!p=eulerphi(n), d, (n+d)%p || return(1))} \\ - M. F. Hasler, Apr 06 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot, Apr 02 2013
EXTENSIONS
Name corrected by Donovan Johnson, Apr 08 2013
STATUS
approved
