login
A277095
Numbers k such that sin(k) < 0 and sin(k+2) > 0.
4
5, 6, 11, 12, 17, 18, 24, 25, 30, 31, 36, 37, 42, 43, 49, 50, 55, 56, 61, 62, 68, 69, 74, 75, 80, 81, 86, 87, 93, 94, 99, 100, 105, 106, 112, 113, 118, 119, 124, 125, 130, 131, 137, 138, 143, 144, 149, 150, 156, 157, 162, 163, 168, 169, 174, 175, 181, 182
OFFSET
1,1
COMMENTS
Guide to related sequences (a four-way splitting of the natural numbers):
A277093: sin(k) > 0 and sin(k+2) > 0
A277094: sin(k) > 0 and sin(k+2) < 0
A277095: sin(k) < 0 and sin(k+2) > 0
A277096: sin(k) < 0 and sin(k+2) < 0
LINKS
FORMULA
a(n) ~ Pi*n by the equidistribution theorem. - Charles R Greathouse IV, Oct 09 2016
MATHEMATICA
z = 400; f[x_] := Sin[x];
Select[Range[z], f[#] > 0 && f[# + 2] > 0 &] (* A277093 *)
Select[Range[z], f[#] > 0 && f[# + 2] < 0 &] (* A277094 *)
Select[Range[z], f[#] < 0 && f[# + 2] > 0 &] (* A277095 *)
Select[Range[z], f[#] < 0 && f[# + 2] < 0 &] (* A277096 *)
PROG
(PARI) is(n)=frac(n/2/Pi) > 1-1/Pi \\ Charles R Greathouse IV, Oct 09 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 01 2016
STATUS
approved