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.

A059557 Beatty sequence for 1 + gamma^2, (gamma is the Euler-Mascheroni constant A001620).

Original entry on oeis.org

1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 21, 22, 23, 25, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 39, 41, 42, 43, 45, 46, 47, 49, 50, 51, 53, 54, 55, 57, 58, 59, 61, 62, 63, 65, 66, 67, 69, 70, 71, 73, 74, 75, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89, 90, 91, 93, 94
Offset: 1

Views

Author

Mitch Harris, Jan 22 2001

Keywords

Crossrefs

Beatty complement is A059558.

Programs

  • Magma
    R:=RealField(100); [Floor((1+EulerGamma(R)^2)*n): n in [1..100]]; // G. C. Greubel, Aug 27 2018
  • Mathematica
    Table[Floor[(1 + EulerGamma^2)*n], {n,1,100}] (* G. C. Greubel, Aug 27 2018 *)
  • PARI
    { default(realprecision, 100); b=1 + Euler^2; for (n = 1, 2000, write("b059557.txt", n, " ", floor(n*b)); ) } \\ Harry J. Smith, Jun 28 2009
    

Formula

a(n) = A042968(n-1), 1<=n<2146. - R. J. Mathar, Oct 05 2008