A164347 The n-th term is the minimum number x such that x/Totient(x) >= n.
2, 2, 6, 30, 210, 30030, 223092870, 13082761331670030, 3217644767340672907899084554130
Offset: 1
Examples
2 => 2/totient(2) = 2 (so it is both the first and 2nd entry of the sequence). 30 => 30/totient(30) = 15/4 >= 3. 210 => 210/totient(210) = 210/48 >= 4.
Links
- Wikipedia, Euler's totient function
Comments