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

A108587
a(n) = floor(n/(1-sin(1))).
4
6, 12, 18, 25, 31, 37, 44, 50, 56, 63, 69, 75, 82, 88, 94, 100, 107, 113, 119, 126, 132, 138, 145, 151, 157, 164, 170, 176, 182, 189, 195, 201, 208, 214, 220, 227, 233, 239, 246, 252, 258, 264, 271, 277, 283, 290, 296, 302, 309, 315, 321, 328, 334, 340, 346
OFFSET
1,1
COMMENTS
Beatty sequence for 1/(1-sin(1)); complement of A108120.
MATHEMATICA
Table[Floor[n/(1-Sin[1])], {n, 60}] (* G. C. Greubel, Dec 19 2022 *)
PROG
(Magma) [Floor(n/(1-Sin(1))): n in [1..60]]; // G. C. Greubel, Dec 19 2022
(SageMath) [int(n/(1-sin(1))) for n in range(1, 61)] # G. C. Greubel, Dec 19 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 11 2005
STATUS
approved