|
COMMENT
|
Indices of the palindromic Fibonacci numbers are 0,1,2,3,4,5,6,10. - Robert G. Wilson v (rgwv(AT)rgwv.com), Jun 29 2007.
Probably 55 is the last term. No further terms up to F(200000). - Robert G. Wilson v (rgwv(AT)rgwv.com), Jun 29 2007.
Also, 0,1,1,2,3,5,8,55 are the only Fibonacci numbers containing a single digit.
|
|
MATHEMATICA
|
fQ[n_] := Block[{id = IntegerDigits@ Fibonacci@ n}, id == Reverse@ id]; lst = {}; Do[ If[ fQ@n, AppendTo[lst, n]], {n, 0, 1000}]; Fibonacci /@ lst (* Robert G. Wilson v *)
|