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.

A018117 Powers of fifth root of 2 rounded down.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 5, 6, 6, 8, 9, 10, 12, 13, 16, 18, 21, 24, 27, 32, 36, 42, 48, 55, 64, 73, 84, 97, 111, 128, 147, 168, 194, 222, 256, 294, 337, 388, 445, 512, 588, 675, 776, 891, 1024, 1176, 1351, 1552, 1782, 2048, 2352, 2702, 3104, 3565, 4096
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Floor[2^(n/5)]; Array[a, 100, 0] (* Amiram Eldar, Apr 04 2025 *)
  • PARI
    a(n) = sqrtnint(2^n, 5) \\ Amiram Eldar, Apr 04 2025