OFFSET
1,2
COMMENTS
Positive Fibonacci numbers with record values for the number of divisors.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..33
EXAMPLE
144 is in the sequence because it is a Fibonacci number with 15 divisors and all smaller Fibonacci numbers have fewer divisors. - Emeric Deutsch, Jan 20 2009
MAPLE
with(numtheory): with(combinat): a := proc (n) if n = 1 then 1 else if max(seq(tau(fibonacci(j)), j = 1 .. n-1)) < tau(fibonacci(n)) then fibonacci(n) else end if end if end proc: seq(a(n), n = 1 .. 170); # Emeric Deutsch, Jan 20 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Jan 18 2009, Jan 20 2009
EXTENSIONS
Extended by Emeric Deutsch, Jan 20 2009
STATUS
approved