login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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