login
A261585
Number of sexagesimal digits of Fibonacci numbers in base-60 representation.
5
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,12
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
LINKS
Eric Weisstein's World of Mathematics, Sexagesimal
Wikipedia, Sexagesimal
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.
MATHEMATICA
Join[{1}, IntegerLength[Fibonacci[Range[100]], 60]] (* Paolo Xausa, Feb 19 2024 *)
PROG
(Haskell)
a261585 = length . a261575_row
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 09 2015
STATUS
approved