OFFSET
1,2
EXAMPLE
1 is a term since Fibonacci(1) = 1 plus its reversal is 1 + 1 = 2 which is prime (and for the same reason 2 is a term).
81 is a term since Fibonacci(81) = 37889062373143906 plus its reversal is 98823199699242779 which is prime.
MATHEMATICA
Select[Range[10^4], PrimeQ[(f = Fibonacci[#]) + IntegerReverse[f]] &] (* Amiram Eldar, Mar 25 2024 *)
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Gonzalo MartÃnez, Mar 25 2024
EXTENSIONS
a(7) from Michael S. Branicky, Jan 07 2025
STATUS
approved