OFFSET
1,1
COMMENTS
Obviously 2*phi(n) = n is impossible for odd n. Odd elements of A054741 and A119432. This is not the same as A036798. 684411 = 3*7*13*23*109 is in this sequence but not in A036798. (This is may not be the smallest such value.) The primitive elements of this sequence are A119433, excluding the initial 2
If n is in the sequence, then so is every odd multiple of n. - Robert Israel, Jan 06 2017
The asymptotic density of this sequence is in the interval (0.01120, 0.01176) (Kobayashi, 2016). It is 1/2 less than the asymptotic density of A119432. The number of terms below 10^k for k = 3, 4, ... are 11, 109, 1152, 11076, 111927, 1124091, 11224403, 112074112, ... - Amiram Eldar, Oct 15 2020
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
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.
FORMULA
MAPLE
select(t -> numtheory:-phi(t) < t/2, [seq(t, t=1..10000, 2)]);
MATHEMATICA
Select[Range[1, 10^4, 2], 2 EulerPhi[#] < #&] (* Jean-François Alcover, Apr 12 2019 *)
PROG
(PARI) lista(nn) = forstep (n=1, nn, 2, if (n > 2*eulerphi(n), print1(n, ", "))) \\ Michel Marcus, Jul 04 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Franklin T. Adams-Watters, May 19 2006
STATUS
approved
