A091456 Least number k such that n * phi(k) < k, where phi is Euler's totient function.
2, 6, 30, 210, 30030, 223092870, 13082761331670030, 3217644767340672907899084554130, 1492182350939279320058875736615841068547583863326864530410
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..13
Crossrefs
Programs
-
PARI
a(n) = {k = 1; while (n*eulerphi(k) >= k, k++); k;} \\ Michel Marcus, Sep 25 2013
-
PARI
a(n)=my(k=1);forprime(p=2,,if(n*eulerphi(k)
Charles R Greathouse IV, Sep 25 2013
Comments