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

A070752
Numbers k such that sin(k) > 0.
11
1, 2, 3, 7, 8, 9, 13, 14, 15, 19, 20, 21, 26, 27, 28, 32, 33, 34, 38, 39, 40, 44, 45, 46, 47, 51, 52, 53, 57, 58, 59, 63, 64, 65, 70, 71, 72, 76, 77, 78, 82, 83, 84, 88, 89, 90, 91, 95, 96, 97, 101, 102, 103, 107, 108, 109, 114, 115, 116, 120, 121, 122, 126, 127
OFFSET
1,2
COMMENTS
A070747(a(n)) = 1.
LINKS
MATHEMATICA
A070752={}; Do[ If[Sin[n] > 0, AppendTo[A070752, n]], {n, 200}]; A070752 (* K. D. Bajpai, Dec 13 2019 *)
PROG
(Magma) [n : n in[1 .. 100] | Sin(n) gt 0]; // K. D. Bajpai, Dec 13 2019
(PARI) isok(n) = sin(n) > 0; \\ Michel Marcus, Dec 13 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 04 2002
STATUS
approved