OFFSET
0,4
COMMENTS
a(n) is the product of the terms in the n-th row of table A261575.
Conjecture: a(n) = 0 for n > 3329 (empirically checked up to 36000).
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
Eric Weisstein's World of Mathematics, Sexagesimal
Wikipedia, Sexagesimal
MAPLE
a:= n-> mul(i, i=convert((<<0|1>, <1|1>>^n)[1, 2], base, 60)):
seq(a(n), n=0..44); # Alois P. Heinz, Jan 22 2022
MATHEMATICA
Apply[Times, IntegerDigits[Fibonacci[Range[0, 50]], 60], {1}] (* Paolo Xausa, Feb 19 2024 *)
PROG
(Haskell)
a261598 = product . a261575_row
(PARI) a(n) = if (n, vecprod(digits(fibonacci(n), 60)), 0); \\ Michel Marcus, Jan 22 2022
CROSSREFS
KEYWORD
AUTHOR
Reinhard Zumkeller, Sep 09 2015
STATUS
approved