OFFSET
1,2
COMMENTS
Luca & Young prove that there are no more terms in this sequence. - Charles R Greathouse IV, Apr 27 2016
LINKS
Florian Luca and Paul Thomas Young, On the number of divisors of n! and of the Fibonacci numbers
FORMULA
EXAMPLE
8 is a term as a Fibonacci number that is divisible by the number of its divisors, (1,2,4,8), which is 4.
MAPLE
select(t -> t mod numtheory:-tau(t) = 0, map(combinat:-fibonacci, [$2..200])); # Robert Israel, Apr 27 2016
MATHEMATICA
DeleteDuplicates@Select[Fibonacci@Range@200, Divisible[#, IntegerLength@#]&]
PROG
(PARI) for(n=2, 200, fn=fibonacci(n); fn%numdiv(fn)==0&&print1(fn ", "))
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Waldemar Puszkarz, Apr 25 2016
STATUS
approved