OFFSET
1,1
COMMENTS
Are there any odd values in the sequence?
a(26) > 10^12. - Donovan Johnson, Feb 29 2012
MATHEMATICA
Select[Range[10^5], DivisorSigma[1, # + 1] == # + EulerPhi[#] &] (* Alonso del Arte, Feb 29 2012 *)
PROG
(PARI) : for(n=1, 500000, if(sigma(n+1)-n==eulerphi(n), print1(n, ", ")))
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Mar 02 2002
EXTENSIONS
One more term from Rick L. Shepherd, Jun 21 2002
a(17)-a(25) from Donovan Johnson, Feb 29 2012
STATUS
approved