OFFSET
1,6
LINKS
T. D. Noe, Table of n, a(n) for n=1..300
EXAMPLE
Fibonacci(9) = 34; and the divisors of 34 are 1, 2, 17 and 34. Of these divisors, 1 and 2 divide earlier Fibonacci numbers, 17 and 34 do not. So a(9) = 2.
MATHEMATICA
f[t_] := Append[t, Select[Divisors[Fibonacci[Length[t] + 1]], FreeQ[Flatten[t], # ] &]]; Length /@ Nest[f, {}, 85] (* Ray Chandler, Jun 14 2006 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Jun 13 2006
EXTENSIONS
Extended by Ray Chandler, Jun 14 2006
STATUS
approved