OFFSET
1,1
COMMENTS
619697 = 13*73*653 is the smallest solution not of the form p or p*q for distinct primes p and q.
218688017 is the first term that has four prime factors and 32617225577 is the first term with five prime factors. 72340252337 and 179115011177 are the first two that are not squarefree. There are 175 terms less than 5*10^11. - Jud McCranie, Feb 20 2012
LINKS
Harry J. Smith and Jud McCranie, Table of n, a(n) for n = 1..175 (first 50 terms from Harry J. Smith)
MATHEMATICA
Select[ Range[3, 10^7], !PrimeQ[ # ] && EulerPhi[ # ] == EulerPhi[ # - 1] + EulerPhi[ # - 2] & ]
PROG
(PARI) { n=0; e1=eulerphi(2); e2=eulerphi(1); for (m=3, 10^9, e=eulerphi(m); if (!isprime(m) && e==e2 + e1, write("b065572.txt", n++, " ", m); if (n==100, return)); e2=e1; e1=e ) } \\ Harry J. Smith, Oct 23 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Len Smiley and Robert G. Wilson v, Nov 30 2001
EXTENSIONS
More terms from Jud McCranie, Feb 21 2012
STATUS
approved