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!)
A246415 Positive integers k satisfying csc(k) < csc(k+1) < csc(k+2) > csc(k+3). 3
22, 66, 110, 154, 177, 221, 265, 309, 355, 399, 443, 487, 554, 598, 642, 686, 732, 776, 820, 864, 887, 931, 975, 1019, 1065, 1109, 1153, 1197, 1264, 1308, 1352, 1396, 1442, 1486, 1530, 1574, 1597, 1641, 1685, 1729, 1775, 1819, 1863, 1907, 1974, 2018, 2062 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A246413, A246414, and this sequence partition the positive integers.
LINKS
MATHEMATICA
z = 200;
f[x_] := f[x] = Csc[x];
Select[Range[1, z], f[#] > f[# + 1] &] (* A246413 *)
Select[Range[1, z], f[#] < f[# + 1] > f[# + 2] &] (* A246414 *)
Select[Range[1, z], f[#] < f[# + 1] < f[# + 2] > f[# + 3] &] (* A246415 *)
PROG
(PARI) is(n) = (1/sin(n)) < (1/sin(n+1)) && (1/sin(n+1)) < (1/sin(n+2)) && (1/sin(n+2)) > (1/sin(n+3)) \\ Felix Fröhlich, Jan 02 2018
CROSSREFS
Sequence in context: A126376 A136604 A064710 * A164136 A041946 A303858
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 25 2014
EXTENSIONS
Name corrected by David Gross, Jan 02 2018
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 14 17:50 EDT 2024. Contains 372533 sequences. (Running on oeis4.)