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.

A261585 Number of sexagesimal digits of Fibonacci numbers in base-60 representation.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10
Offset: 0

Views

Author

Reinhard Zumkeller, Sep 09 2015

Keywords

Comments

a(n) = length of n-th row in table A261575.
a(n)/n tends towards log_60(phi) = 0.117530856953191562796405213751... - Hans J. H. Tuenter, Jul 13 2025

Crossrefs

Programs

  • Haskell
    a261585 = length . a261575_row
  • Mathematica
    Join[{1}, IntegerLength[Fibonacci[Range[100]], 60]] (* Paolo Xausa, Feb 19 2024 *)

Formula

For n>1, a(n) = 1+floor(n*log_60(phi)-log_60(5)/2), where phi=(1+sqrt(5))/2, the golden ratio. - Hans J. H. Tuenter, Jul 13 2025.