OFFSET
1,1
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..200
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
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