OFFSET
3,5
COMMENTS
With regard to A175550, where the period of 1/Fibonacci(n) is concerned with the Fibonacci numbers such that gcd(Fibonacci(n), 10) = 1 only, this sequence is complete.
EXAMPLE
a(8) = 6 because Fibonacci(8) = 21, and 1/21 = 0. 047619 047619 047619 047619 ... => period = 6;
a(9) = 16 because Fibonacci(9) = 34, and 1/34 = 0.0 2941176470588235 2941176470588235 2941176470588235 ... => period = 16.
MATHEMATICA
Table[MultiplicativeOrder[10, n/Times @@ ({2, 5}^IntegerExponent[n, {2, 5}])], {n, Fibonacci[Range[3, 50]]}] (* Amiram Eldar, May 26 2024 *)
PROG
(PARI) a(n) = my(f=fibonacci(n)); znorder(Mod(10, f/2^valuation(f, 2)/5^valuation(f, 5))); \\ Michel Marcus, May 26 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Jul 02 2010
EXTENSIONS
a(23) onward corrected by Sean A. Irvine, May 26 2024
STATUS
approved