A330251 Numbers k such that phi(k) = phi(k+3), where phi (A000010) is Euler's totient function.
3, 5, 8720288051472, 9134280520365, 41544070492925, 42466684755492, 51363581614342, 68616494581632, 113312918293575, 210911076210835, 215517565688425, 294988451482725, 383617980270525, 432759876053505, 442863123838135, 532068058516992, 892813363927485, 923102743748185, 929531173876305
Offset: 1
Keywords
Links
- Kevin Ford, Solutions of phi(n)=phi(n+k) and sigma(n)=sigma(n+k), arXiv:2002.12155 [math.NT], 2020.
- S. W. Graham, J. J. Holt, and C. Pomerance, On the solutions to phi(n) = phi(n+k), Number Theory in Progress, K. Gyory, H. Iwaniec, and J. Urbanowicz, eds., vol. 2, de Gruyter, Berlin and New York, 1999, pp. 867-882.
- Mathematics StackExchange, Conjecture on the gap between integers having the same number of co-primes, Sep 25 2019.
Crossrefs
Programs
-
Mathematica
Select[Range[100000], EulerPhi[#] == EulerPhi[# + 3] &] (* Alonso del Arte, Mar 01 2020 *)
-
PARI
isok(k) = eulerphi(k) == eulerphi(k+3); \\ Michel Marcus, Feb 29 2020
Comments