A202855 Numbers n such that phi(n) - 1 divides n, where phi is Euler's totient function.
3, 4, 6, 12, 60, 1020, 262140, 334495740, 17179869180, 27971850688528380
Offset: 1
Programs
-
Mathematica
Select[1 + Range[1000000], Divisible[#, EulerPhi[#] - 1] &]
-
PARI
for(n=3,1e7,if(n%(eulerphi(n)-1)==0,print1(n", "))) \\ Charles R Greathouse IV, Dec 26 2011
Extensions
a(8) from Charles R Greathouse IV, Dec 27 2011
a(9) from Donovan Johnson, Dec 29 2011
a(10) from Chris Boyd confirmed by Max Alekseyev, Oct 26 2023
Comments