OFFSET
1,1
COMMENTS
These numbers m appear to satisfy cototient(m) > totient(m) or 2*phi(m) < m; they seem to be the missing terms mentioned in A067800. - Labos Elemer, May 08 2003
All elements in this sequence must have 2*phi(m) < m, but not the reverse. See A118700. - Franklin T. Adams-Watters, May 21 2006
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
MAPLE
N:= 10^4: # to get all terms <= N
PhiE:= map(numtheory:-phi, [seq(i, i=2..N, 2)]):
A:= NULL:
for n from 1 to N by 2 do
t:= numtheory:-phi(n);
if 2*t < n and member(t, PhiE[1..(n-1)/2]) then A:= A, n fi;
od:
A; # Robert Israel, Jan 06 2017
MATHEMATICA
Select[ Range[1, 4483, 2], Mod[ #, EulerPhi[ # ]] != # - EulerPhi[ # ] &] (* Robert G. Wilson v, Jan 10 2004 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved