A338998 Composite numbers k such that phi(k) divides p*(k - 1) for some prime factor p of k - 1.
1729, 12801, 5079361, 34479361, 3069196417, 23915494401
Offset: 1
Examples
phi(1729) = 1296 divides 3 * 1728.
Links
- D. H. Lehmer, On Euler's totient function, Bulletin of the American Mathematical Society, 38 (1932), 745-751.
- Giovanni Resta, k-Lehmer numbers
- Eric Weisstein's World of Mathematics, Lehmer's Totient Problem
- Wikipedia, Lehmer's totient problem
Crossrefs
Programs
-
PARI
is(n)={my(s=denominator((n-1)/eulerphi(n))); !isprime(n) && isprime(s) && ((n-1)%s==0) && n>1} { forcomposite(n=1, 2^32, if(is(n), print1(n, ", "))) }
Extensions
a(5) from Amiram Eldar, Nov 18 2020
a(6) from Daniel Suteu, confirmed by Max Alekseyev, Sep 29 2023
Comments