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”).

A327423
Positive integers k such that tan(k) < 0 (or equivalently, cot(k) < 0).
5
2, 3, 5, 6, 8, 9, 11, 12, 15, 18, 21, 24, 25, 27, 28, 30, 31, 33, 34, 37, 40, 43, 46, 47, 49, 50, 52, 53, 55, 56, 59, 62, 65, 68, 69, 71, 72, 74, 75, 77, 78, 81, 84, 87, 90, 91, 93, 94, 96, 97, 99, 100, 103, 106, 109, 112, 113, 115, 116, 118, 119, 121, 122, 125, 128
OFFSET
1,1
COMMENTS
Complement of A327422.
Numbers k such that 1/2 < {k/Pi} < 1, where {} is the fractional part.
Numbers k such that A330035(k) = -1.
Also positive integers k such that sin(2k) < 0, i.e., k such that 2k is in A070751.
MATHEMATICA
upto[n_] := Select[Range[n], Tan[#] < 0 &]
PROG
(PARI) A327423_up_to_n(n) = my(v=vector(n, k, k)); select(k->tan(k)<0, v)
CROSSREFS
Cf. A330035.
Cf. A070752 (sin(k) > 0 or csc(k) > 0), A070751 (sin(k) < 0 or csc(k) < 0), A131503 (cos(k) > 0 or sec(k) > 0), A327422 (tan(k) > 0 or cot(k) > 0), this sequence (tan(k) < 0 or cot(k) < 0).
Sequence in context: A139364 A364000 A211265 * A024913 A284934 A320928
KEYWORD
nonn
AUTHOR
Jianing Song, Nov 29 2019
STATUS
approved