login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A261607
Initial digit of Fibonacci number F(n) in base 60.
4
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 1, 2, 3, 6, 10, 16, 26, 43, 1, 1, 3, 4, 7, 12, 20, 33, 54, 1, 2, 3, 6, 10, 16, 26, 42, 1, 1, 3, 4, 7, 12, 20, 33, 54, 1, 2, 3, 6, 10, 16, 26, 42, 1, 1, 2, 4, 7, 12, 20, 33, 53, 1, 2, 3, 6, 9, 16, 25, 42, 1, 1, 2, 4, 7, 12
OFFSET
0,4
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10000 (first 1001 terms from Reinhard Zumkeller)
Eric Weisstein's World of Mathematics, Sexagesimal.
Wikipedia, Sexagesimal.
FORMULA
a(n) = A261575(n, A261585(n)-1).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = Sum_{d=1..59} d*log(1+1/d)/log(60) = 13.92958... . - Amiram Eldar, Jan 12 2023
MATHEMATICA
IntegerDigits[Fibonacci[Range[0, 75]], 60][[All, 1]] (* Michael De Vlieger, Jan 22 2022 *)
PROG
(Haskell)
a261607 = last . a261575_row
(PARI) a(n) = if (n, digits(fibonacci(n), 60)[1], 0); \\ Michel Marcus, Jan 22 2022
CROSSREFS
KEYWORD
nonn,look,base
AUTHOR
Reinhard Zumkeller, Sep 09 2015
STATUS
approved