A378028 Positions of records in A377059.
1, 4, 9, 17, 22, 25, 46, 49, 81, 118, 121, 169, 243, 334, 337, 343, 361, 529, 841, 961, 1331, 1369, 2187, 2197, 2209, 2809, 3481, 3721, 4489, 5041, 6241, 6859, 6889, 7921, 10201, 11449, 12167, 14641, 16129, 17161, 19321, 22201, 24389, 26569, 27889, 29791, 29929, 32041, 32761, 38809, 39601, 44521, 49729
Offset: 1
Keywords
Examples
a(3) = 9 is a term because A377059(9) = 6 > A377059(k) for all k < 9.
Programs
-
Maple
f:= proc(n) local x,r; for x from 2 to n do if igcd(x,n) <> 1 then next fi; r:= numtheory:-order(x,n); if r::even and r < n-1 then return r fi od; 0 end proc: J:= 1: m:= 0: count:= 0: for k from 2 while count < 100 do v:= f(k); if v > m then m:= v; J:= J,k; count:= count+1 fi; od: J;
Comments