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”).

A100410
Numbers m such that m is the phi(m)-th composite number (m = A002808(phi(m))).
2
6, 15, 21, 265, 295, 2681, 174757, 1302197, 237875719, 358334927, 26530938403, 26965177391, 127649964961, 409720883023
OFFSET
1,1
COMMENTS
m is in the sequence iff m = phi(m) + pi(m) + 1.
a(15) > 2*10^12. - Giovanni Resta, Mar 31 2017
EXAMPLE
15 is in the sequence because phi(15)=8 & 15=A002808(8).
MATHEMATICA
Do[If[n==EulerPhi[n]+PrimePi[n]+1, Print[n]], {n, 75000000}]
PROG
(PARI) isok(n) = eulerphi(n)+primepi(n) == n - 1; \\ Michel Marcus, Apr 01 2017
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Farideh Firoozbakht, Dec 01 2004
EXTENSIONS
a(9)-a(10) from Donovan Johnson, Aug 28 2012
a(11)-a(14) from Giovanni Resta, Mar 31 2017
STATUS
approved