A139795 Least m such that k>=m implies phi(k)>=n (where phi is the Euler totient function, sequence A000010).
1, 3, 7, 7, 13, 13, 19, 19, 31, 31, 31, 31, 43, 43, 43, 43, 61, 61, 61, 61, 67, 67, 67, 67, 91, 91, 91, 91, 91, 91, 91, 91, 121, 121, 121, 121, 127, 127, 127, 127, 151, 151, 151, 151, 151, 151, 151, 151, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211, 211
Offset: 1
Keywords
Examples
a(5)=13 because if k>=13, then phi(k)>=5, but phi(12)=4.
Links
- Max Alekseyev, Table of n, a(n) for n = 1..10000
- Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
Crossrefs
Different from A137315 (see Comments in that entry).
Programs
-
PARI
{m=0;for(n=1,100,print1(m+1,",");trap(,0,m=max(m,vecmax(invphi(n)))))}
Comments