OFFSET
1,2
COMMENTS
Consists of the even semiprimes (other than 4) together with A207575. - Charles R Greathouse IV, Jul 15 2013
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[1000], Divisible[#+2, EulerPhi[#]+2]&]
PROG
(PARI) isA207574(n)={
if( (n+2) % (eulerphi(n)+2) ==0, 1, 0) ;
}
{
for(n=1, 200,
if (isA207574(n) , print(n)) ;
) ;
} /* R. J. Mathar, Feb 23 2012 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
José María Grau Ribas, Feb 19 2012
STATUS
approved