OFFSET
1,2
COMMENTS
If phi(x) = N has exactly two solutions, x = n and x = m, say (see A007366), it is conjectured that one of n and m is odd and the other even.
This sequence differs from A058340 in that it contains nonprime integers. The first few are 81, 121, 343, 361, 529, 649, 841, 961, 1219, 1331, 1537, 1633, ...
EXAMPLE
81 is a term because phi(81) = phi(162) = 54 (= A007366(8)).
MATHEMATICA
(* takes about 2 minutes, can return the sequence up to terms less than 5760=Euler phi(13 primorial) *)
Prepend[Select[
Table[Flatten[Position[Table[EulerPhi[n], {n, 1, 30030}], m]], {m,
2, 500, 2}], Length[#] == 2 &][[All, 1]], 1]
CROSSREFS
KEYWORD
nonn
AUTHOR
Geoffrey Critzer, Apr 17 2016
EXTENSIONS
Edited by N. J. A. Sloane, Apr 22 2016 at the suggestion of Franklin T. Adams-Watters.
STATUS
approved