login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A066168
a(n) = least k such that phi(k) > sigma(n).
1
3, 5, 7, 11, 11, 17, 11, 17, 17, 23, 17, 31, 17, 29, 29, 37, 23, 41, 23, 47, 37, 41, 29, 67, 37, 47, 43, 59, 37, 79, 37, 67, 53, 59, 53, 97, 41, 67, 59, 97, 47, 101, 47, 89, 83, 79, 53, 127, 59, 97, 79, 101, 59, 127, 79, 127, 83, 97, 67, 173, 67, 101, 107, 131, 89, 149, 71
OFFSET
1,1
COMMENTS
Sigma dominates phi. Heuristically, a(n) = first time when phi(n) overtakes sigma(n), if n is thought of as time. a(n) - n can be thought of as the "lag at time n" of phi behind sigma.
It is easily shown that all terms a(n) are primes.
LINKS
EXAMPLE
a(3) = 7 since phi(7) = 6 > sigma(3) = 4 and 7 is the first number to satisfy the inequality.
MATHEMATICA
With[{ep=EulerPhi[Range[200]]}, Table[Position[ep, _?(#>DivisorSigma[1, m]&), {1}, 1], {m, 70}]]//Flatten (* Harvey P. Dale, May 03 2016 *)
PROG
(PARI) { for (n=1, 1000, s=sigma(n); k=1; while (eulerphi(k) <= s, k++); write("b066168.txt", n, " ", k) ) } \\ Harry J. Smith, Feb 04 2010
CROSSREFS
Sequence in context: A375345 A123252 A352185 * A058024 A215464 A260910
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Dec 13 2001
EXTENSIONS
a(17) - a(67) from Harry J. Smith, Feb 04 2010
STATUS
approved