OFFSET
1,1
COMMENTS
Contains all members k of A206581 such that k==103 (mod 210) except 103.- Robert Israel, Oct 16 2019
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
313 is in the sequence since phi(313) = 312, phi(314) = 156, phi(315) = 144, and 312 > 156 > 144.
MAPLE
R:= NULL: count:= 0:
q:= false: s:= 0:
for i from 1 while count < 100 do
t:= numtheory:-phi(i);
r:= q;
q:= evalb(t<s);
if r and q then count:= count+1; R:= R, i-2 fi;
s:= t;
od:
R; # Robert Israel, Oct 16 2019
MATHEMATICA
Flatten[Position[Partition[EulerPhi[Range[5600]], 3, 1], _?(Max[Differences[#]] < 0 &)] // Quiet] (* Amiram Eldar, Oct 06 2019 after Harvey P. Dale at A078776 *)
PROG
(Magma) [k:k in [1..5600]| EulerPhi(k) gt EulerPhi(k+1) and EulerPhi(k+1) gt EulerPhi(k+2)]; // Marius A. Burtea, Oct 07 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Kritsada Moomuang, Oct 03 2019
STATUS
approved