A108587 a(n) = floor(n/(1-sin(1))).
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
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 1..5000
- Eric Weisstein's World of Mathematics, Beatty Sequence
- Index entries for sequences related to Beatty sequences
Programs
-
Magma
[Floor(n/(1-Sin(1))): n in [1..60]]; // G. C. Greubel, Dec 19 2022
-
Mathematica
Table[Floor[n/(1-Sin[1])], {n, 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
Comments