OFFSET
1,2
COMMENTS
It is known that for n > 2 Fibonacci(n) divides Fibonacci(m) if and only if n divides m. Therefore if the term "2" is omitted this is identical to A023172, which see for further information. - Stefan Steinerberger, Dec 20 2007
EXAMPLE
12 is a term because F(12) = 144 divides F(F(12)) = F(144) = 555565404224292694404015791808.
MAPLE
with(combinat): a:=proc(n) if type(fibonacci(fibonacci(n))/fibonacci(n), integer) then n else end if end proc: seq(a(n), n=1..40); # Emeric Deutsch, Aug 24 2007
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, May 13 2007
EXTENSIONS
Edited by N. J. A. Sloane, Dec 22 2007
STATUS
approved