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

A000493
a(n) = floor(sin(n)).
8
0, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0, 0, -1, -1, -1, 0, 0
OFFSET
0,1
LINKS
FORMULA
a(n) = -(A032615(n) mod 2). - Robert Israel, Jun 14 2015
MAPLE
f := n->floor(evalf(sin(n)));
MATHEMATICA
f[ n_ ] := Floor[ N[ Sin[ n ] ] ]
Floor[Sin[Range[0, 90]]] (* Harvey P. Dale, Dec 04 2012 *)
PROG
(Magma) [Floor(Sin(n)): n in [0..100]]; // Vincenzo Librandi, Jun 15 2015
CROSSREFS
Cf. A032615, A126564 (even bisection), A000480 (floor cos(n)).
Sequence in context: A011661 A011660 A087101 * A011663 A091247 A085137
KEYWORD
sign,easy
STATUS
approved