OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Amiram Eldar, Plot of a(n)/n for n = 2^(20..34).
Mitsuo Kobayashi, A generalization of a series for the density of abundant numbers, International Journal of Number Theory, Vol. 12, No. 3 (2016), pp. 671-677.
Vaclav Kotesovec, Plot of a(n)/n for n = 1..1000000.
FORMULA
Asymptotic to c*n with c = 2.045...
2.04582 < c < 2.04818 (from the bounds on the asymptotic density of A119432 given by Kobayashi, 2016). - Amiram Eldar, Dec 01 2024
MATHEMATICA
lst={}; Do[If[2*EulerPhi[n]>n, AppendTo[lst, n]], {n, 200}]; lst (* T. D. Noe *)
Select[ Range[130], 2EulerPhi[ # ] > # &] (* Robert G. Wilson v, Jan 16 2004 *)
PROG
(PARI) is(k) = 2*eulerphi(k) > k; \\ Amiram Eldar, Dec 01 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Benoit Cloitre, Jan 16 2004
STATUS
approved