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

A202855
Numbers n such that phi(n) - 1 divides n, where phi is Euler's totient function.
7
3, 4, 6, 12, 60, 1020, 262140, 334495740, 17179869180, 27971850688528380
OFFSET
1,1
COMMENTS
The sequence b(n) = 4*A050474(n) is a subsequence of this sequence, and comprises solutions of n/(phi(n) - 1) = 4, accounting for all terms up to a(9) except a(1) and a(3). Proof: suppose n/(phi(n) - 1) = 4. With n = 4*x, x/(phi(4*x) - 1) = 1, or phi(4*x) = x + 1. Since phi(k) is even for k > 2, x is odd, and phi(4*x) = 2*phi(x) = x + 1, the definition of A050474. It follows that 4*A050474(8) = 27971850688528380 is a term of this sequence. - Chris Boyd, Mar 22 2015
Similarly, the terms with n/(phi(n) - 1) = 3 are given by 3 * terms of A050474 coprime to 3; n/(phi(n) - 1) = 6 are given by 6 * terms of A050474 coprime to 6. Also, the terms of n/(phi(n) - 1) = 5 are given by 5 * terms t of A203966 coprime to 5 and having (t+1)/phi(t) = 4. Note that n/(phi(n) - 1) = 2 is impossible. - Max Alekseyev, Oct 26 2023
MATHEMATICA
Select[1 + Range[1000000], Divisible[#, EulerPhi[#] - 1] &]
PROG
(PARI) for(n=3, 1e7, if(n%(eulerphi(n)-1)==0, print1(n", "))) \\ Charles R Greathouse IV, Dec 26 2011
CROSSREFS
KEYWORD
nonn,more
AUTHOR
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
STATUS
approved