OFFSET
0,2
COMMENTS
a(n) = floor[circumference of a circle of radius n]; a(n) = floor(2*Pi*n). - Mohammad K. Azarian, Feb 29 2008
This sequence consists of the nonnegative integers k satisfying sin(k) <= 0 and sin(k+1) >= 0; thus this sequence and A246388 partition A022844 (the Beatty sequence for Pi). - Clark Kimberling, Aug 24 2014
LINKS
Eric Weisstein's World of Mathematics, Beatty Sequence.
FORMULA
a(n) = floor(n*2*Pi).
MATHEMATICA
Table[Floor[2 n*Pi], {n, 0, 100}] (* or *)
Select[Range[0, 628], Sin[#] <= 0 && Sin[# + 1] >= 0 &] (* Clark Kimberling, Aug 24 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Mohammad K. Azarian, Feb 29 2008
STATUS
approved