A337248 Numbers k for which sec(k) > k.
1, 11, 52174, 260515, 37362253, 42781604, 2685575996367
Offset: 1
Examples
sec(1) = 1.8508... so 1 is a term.
Programs
-
Mathematica
Select[Range[10^6], Sec[#] > # &] (* Amiram Eldar, Aug 21 2020 *)
-
PARI
isok(m) = 1/cos(m) > m; \\ Michel Marcus, Aug 27 2020
-
Python
import math i = 1 while True: if 1 / math.cos(i) > i: print(i) i += 1
Extensions
a(7) from Wolfe Padawer, Jan 05 2023
Comments