OFFSET
1,1
COMMENTS
Next term > 10^6. - Michel Marcus, Nov 22 2013
There are no more terms < 10^10. Conjectured to be complete. - Donovan Johnson, Nov 24 2013
EXAMPLE
pi(11) = 5 and phi(11) = 10, so 11 is in the sequence.
pi(12) = 5 but phi(12) = 4, so 12 is not in the sequence.
pi(13) = 6 and phi(13) = 12, so 13 is in the sequence.
MATHEMATICA
Select[Range[500000], 2PrimePi[#] == EulerPhi[#] &] (* Harvey P. Dale, Nov 22 2013 *)
PROG
(PARI) isok(n) = eulerphi(n) == 2*primepi(n); \\ Michel Marcus, Nov 22 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Feb 06 2002
EXTENSIONS
Corrected and extended by Michel Marcus, Nov 22 2013
Confirmed by Harvey P. Dale, Nov 22 2013
STATUS
approved