OFFSET
1,2
COMMENTS
If p is an odd prime and 8p+1 is prime then n=10(8p+1) is in the sequence because 2n-phi(phi(n))=20(8p+1)-16(p-1)=144p+3618*(8p+2)=sigma(n).
Conjecture: Each term which is greater than 76 of this sequence is of the form 80p+10 where both p and 8p+1 are primes.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
76 is in the sequence because sigma(76)=2*76-phi(phi(76)).
MATHEMATICA
Do[If[DivisorSigma[1, m] == 2m - EulerPhi[EulerPhi[m]], Print[m]], {m, 100000}]
PROG
(PARI) is(n)=sigma(n)==2*n-eulerphi(eulerphi(n)) \\ Charles R Greathouse IV, May 15 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Farideh Firoozbakht, Jul 23 2005
STATUS
approved