OFFSET
1,2
COMMENTS
The values > 1 appear to be a subset of the numerators of continued fractions of Pi (A002485) (and/or Pi/2: A096456) and their multiples. Is it possible to find a term k here but not in |A332095| (k |tan k| < 1)? - M. F. Hasler, Oct 09 2020
MATHEMATICA
Select[Range[3200], Abs[Sin[#]] < 1/# &] (* Amiram Eldar, Aug 25 2020 *)
PROG
(Python)
import numpy as np
for x in range(1, 10**9):
if np.abs(np.sin(x)) < 1/x:
print(x, end=", ")
(PARI) print1(1); apply( n-> forstep(n=n, oo, n, abs(sin(n))<1/n||return; print1(", "n)), contfracpnqn(c=contfrac(Pi), #c)[1, ]); \\ M. F. Hasler, Oct 09 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Anian Brosig, Aug 25 2020
EXTENSIONS
More terms from M. F. Hasler, Oct 09 2020
STATUS
approved