OFFSET
1,3
COMMENTS
The next term of the sequence, if it exists, is greater than 10^5.
No more terms < 10^7. - Lars Blomberg, Jun 19 2014
LINKS
Huang Yuke and Wen Zhiying, The structure of palindromes in the Fibonacci sequence and some applications, arXiv: 1601.04391[math.DS], 2016.
MATHEMATICA
t = {}; Do[b = IntegerDigits[Fibonacci[n], 2]; If[b == Reverse[b], AppendTo[t, n]], {n, 0, 1000}]; t (* T. D. Noe, Dec 14 2013 *)
Select[Range[0, 10], PalindromeQ[IntegerDigits[Fibonacci[#], 2]]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Aug 04 2019 *)
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
L. Edson Jeffery, Dec 11 2013
STATUS
approved