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.

A183200 Least integer k such that floor(k*f(n+1))>k*f(n), where f(n)=log_2 of n.

Original entry on oeis.org

1, 2, 1, 4, 2, 3, 1, 6, 4, 3, 2, 3, 4, 6, 1, 12, 6, 5, 4, 3, 5, 2, 7, 5, 3, 4, 5, 6, 8, 11, 1, 23, 12, 8, 6, 5, 9, 4, 7, 3, 8, 5, 7, 13, 2, 11, 7, 5, 8, 3, 10, 7, 4, 9, 5, 11, 6, 8, 9, 11, 15, 22, 1, 45, 23, 16, 12, 10, 8, 7, 6, 11, 5, 9, 13, 4, 11, 7, 13, 3, 14, 8, 13, 5, 12, 7, 9, 13, 21, 2, 23, 13, 11, 9, 7, 17, 5, 8, 11, 17
Offset: 1

Views

Author

Clark Kimberling, Dec 29 2010

Keywords

Crossrefs

Cf. A183163.

Programs

  • Mathematica
      Table[k=1; While[Floor[k*Log[2,n+1]]<=k*Log[2,n], k++]; k, {n,100}]