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.

A181885 Integer nearest (1/n)*(r^n), where r = golden ratio = (1 + sqrt(5))/2.

Original entry on oeis.org

2, 1, 1, 2, 2, 3, 4, 6, 8, 12, 18, 27, 40, 60, 91, 138, 210, 321, 492, 756, 1166, 1800, 2786, 4320, 6710, 10440, 16267, 25380, 39650, 62017, 97108, 152214, 238824, 375060, 589521, 927369, 1459960, 2300100
Offset: 1

Views

Author

Clark Kimberling, Nov 20 2010

Keywords

Crossrefs

Programs

  • Magma
    [Round(((1 + Sqrt(5))/2)^n/n): n in [1..50]]; // Vincenzo Librandi, Jun 21 2011
  • Mathematica
    Table[Round[((1 + Sqrt[5])/2)^n/n], {n, 1, 50}]

Formula

a(n) = floor(1/2 + (1/n)*(r^n)), where r = golden ratio = (1 + sqrt(5))/2.