A382082 F(k) such that F(k) + (F(k) reversed) is a palindrome, where F(k) is a Fibonacci number.
0, 1, 2, 3, 13, 21, 34, 144, 233, 610, 4181, 832040, 102334155, 1134903170, 20365011074, 12200160415121876738
Offset: 1
Examples
144 is in the sequence because 144 + 441 = 585 is a palindrome.
Programs
-
Magma
Rev := func; [0] cat [Fibonacci(n): n in [2..2*10^4] | q eq Rev(q) where q is Fibonacci(n)+Rev(Fibonacci(n))];
-
Mathematica
DeleteDuplicates@ Select[Fibonacci[Range[0, 100]], PalindromeQ[# + IntegerReverse[#]] &] (* Amiram Eldar, Mar 21 2025 *)
Comments