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.

A109260 a(n) = floor(n*sqrt(2)^sqrt(2)/(sqrt(2)^sqrt(2)-1)).

Original entry on oeis.org

2, 5, 7, 10, 12, 15, 18, 20, 23, 25, 28, 30, 33, 36, 38, 41, 43, 46, 49, 51, 54, 56, 59, 61, 64, 67, 69, 72, 74, 77, 80, 82, 85, 87, 90, 92, 95, 98, 100, 103, 105, 108, 110, 113, 116, 118, 121, 123, 126, 129, 131, 134, 136, 139, 141, 144, 147, 149
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 23 2005

Keywords

Comments

Beatty sequence for sqrt(2)^sqrt(2)/(sqrt(2)^sqrt(2)-1); complement of A109259.

Crossrefs

Cf. A109261.

Programs

  • Magma
    [Floor(n*Sqrt(2)^Sqrt(2)/(Sqrt(2)^Sqrt(2) - 1)): n in [1..100]]; // G. C. Greubel, Aug 17 2018
  • Mathematica
    Table[Floor[n*Sqrt[2]^Sqrt[2]/(Sqrt[2]^Sqrt[2] - 1)], {n, 1, 100}] (* G. C. Greubel, Aug 17 2018 *)
  • PARI
    for(n=1,100, print1(floor(n*sqrt(2)^sqrt(2)/(sqrt(2)^sqrt(2)-1)), ", ")) \\ G. C. Greubel, Aug 17 2018