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!)
A277138 Numbers k such that cos(k) < 0 and cos(k+2) > 0. 4
3, 4, 9, 10, 16, 17, 22, 23, 28, 29, 35, 36, 41, 42, 47, 48, 53, 54, 60, 61, 66, 67, 72, 73, 79, 80, 85, 86, 91, 92, 97, 98, 104, 105, 110, 111, 116, 117, 123, 124, 129, 130, 135, 136, 141, 142, 148, 149, 154, 155, 160, 161, 167, 168, 173, 174, 179, 180, 185 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Guide to related sequences (a four-way splitting of the natural numbers):
A277136: cos(k) > 0 and cos(k+2) > 0
A277137: cos(k) > 0 and cos(k+2) < 0
A277138: cos(k) < 0 and cos(k+2) > 0
A277139: cos(k) < 0 and cos(k+2) < 0
LINKS
MATHEMATICA
z = 400; f[x_] := Cos[x];
Select[Range[z], f[#] > 0 && f[# + 2] > 0 &] (* A277136 *)
Select[Range[z], f[#] > 0 && f[# + 2] < 0 &] (* A277137 *)
Select[Range[z], f[#] < 0 && f[# + 2] > 0 &] (* A277138 *)
Select[Range[z], f[#] < 0 && f[# + 2] < 0 &] (* A277139 *)
PROG
(PARI) is(n) = cos(n) < 0 && cos(n+2) > 0 \\ Felix Fröhlich, Oct 14 2016
CROSSREFS
Cf. A277136, A277137, A277139, subsequence of A246444.
Sequence in context: A301919 A093513 A047230 * A327282 A126269 A319618
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 04 2016
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 July 30 19:14 EDT 2024. Contains 374771 sequences. (Running on oeis4.)