The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A337371 Integers k with abs(sin(k)) < 1/k. 3
1, 3, 22, 44, 355, 710, 1065, 1420, 1775, 2130, 2485, 2840, 3195, 312689, 1146408, 5419351, 10838702, 6167950454, 21053343141, 42106686282, 63160029423, 84213372564, 105266715705, 8958937768937, 17917875537874, 428224593349304, 856449186698608, 6134899525417045 (list; graph; refs; listen; history; text; internal format)
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
LINKS
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
Sequence in context: A079039 A209987 A332095 * A041103 A225414 A187694
KEYWORD
nonn
AUTHOR
Anian Brosig, Aug 25 2020
EXTENSIONS
More terms from M. F. Hasler, Oct 09 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 13 02:41 EDT 2024. Contains 372497 sequences. (Running on oeis4.)