cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A108587 a(n) = floor(n/(1-sin(1))).

Original entry on oeis.org

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

Views

Author

Reinhard Zumkeller, Jun 11 2005

Keywords

Comments

Beatty sequence for 1/(1-sin(1)); complement of A108120.

Crossrefs

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