login
A092272
Numbers n such that phi(n) = phi(2*n+1).
3
97, 1417, 2593, 107167, 128137, 262993, 468247, 629821, 879937, 894127, 1100347, 1260847, 1620307, 1644967, 1897417, 2890717, 3122773, 3186397, 3651667, 4169197, 6176467, 7072477, 7344187, 8237707, 8974717, 9254647, 13032547, 15540037, 15673027
OFFSET
1,1
LINKS
EXAMPLE
phi(97) = 97-1 = 96 = 2*4*12 = phi(3*5*13) = phi(195) = phi(2*97+1)
MAPLE
with (numtheory): for i from 1 to 1000000 do if phi(i)=phi(2*i+1) then print(i) fi; od;
MATHEMATICA
Do[ If[ EulerPhi[n] == EulerPhi[2n + 1], Print[n]], {n, 1, 15540036}] (* Robert G. Wilson v, Feb 20 2004 *)
PROG
(PARI) is(n)=my(t=eulerphi(2*n+1)); t<n && t==eulerphi(n) \\ Charles R Greathouse IV, May 19 2013
CROSSREFS
Sequence in context: A224106 A038532 A226082 * A233433 A162542 A241968
KEYWORD
nonn
AUTHOR
Pooya Farshim (P.Farshim.00(AT)cantab.net), Feb 17 2004
EXTENSIONS
More terms from Labos Elemer and Robert G. Wilson v, Feb 19 2004
STATUS
approved