OFFSET
1,2
COMMENTS
a(16) > 1443, if it exists. - Chai Wah Wu, Jan 19 2020
EXAMPLE
The 4th number of this sequence, 12, means that:
Fibonacci(12) = 144 = 2 ^ 4 * 3 ^ 2,
Fibonacci(13) = 233 (prime number),
Fibonacci(14) = 377 = 13 * 29,
Fibonacci(15) = 610 = 2 * 5 * 61,
and these Fibonacci numbers have distinct number of divisors: 15, 2, 4 and 8, respectively.
MAPLE
with(combinat, fibonacci):with(numtheory): for n from 1 to 10 do: i:=0:for k from 1 to 1500 while(i=0) do: lst:={}:for p from 0 to n-1 do :x:= fibonacci(k+p):y:=divisors(x):n1:=nops(y):lst:= lst union {n1}:od:if nops(lst)=n then printf(`%d, `, k): i:=1:else fi:od:od:
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Michel Lagneau, Aug 08 2011
EXTENSIONS
a(12)-a(15) from Amiram Eldar, Oct 18 2019
STATUS
approved