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.

A172334 Floor(n*(sqrt(13)+sqrt(3))).

Original entry on oeis.org

0, 5, 10, 16, 21, 26, 32, 37, 42, 48, 53, 58, 64, 69, 74, 80, 85, 90, 96, 101, 106, 112, 117, 122, 128, 133, 138, 144, 149, 154, 160, 165, 170, 176, 181, 186, 192, 197, 202, 208, 213, 218, 224, 229, 234, 240, 245, 250, 256, 261, 266
Offset: 0

Views

Author

Vincenzo Librandi, Feb 01 2010

Keywords

Comments

Also integer part of n*5.3376020830..., where the constant is the largest root of x^4 -32*x^2 +100.

Crossrefs

Programs

  • Magma
    [ Floor(n*(Sqrt(13)+Sqrt(3))): n in [0..60] ];
  • Mathematica
    With[{c = Sqrt[13] + Sqrt[3]}, Table[Floor[c n], {n, 0, 50}]] (* Harvey P. Dale, Apr 25 2011 *)