A027719 Numbers k such that k^2 + 1 is a palindrome.
0, 1, 2, 10, 25, 100, 1000, 1020, 1489, 2248, 10000, 10090, 100000, 100910, 102020, 167491, 1000000, 1000200, 1009090, 2744934, 10000000, 10000900, 10090910, 24917195, 100000000, 100909090, 103226660, 271867456, 1000000000, 1000002000, 1009090910, 1577033471
Offset: 1
Links
- Giovanni Resta, Table of n, a(n) for n = 1..48
- P. De Geest, Palindromic incremented squares of the form n^2+1
Programs
-
Mathematica
palQ[n_] := Block[{d = IntegerDigits[n]}, d == Reverse[d]]; Select[Range[0, 10^5], palQ[#^2 + 1] &] (* Giovanni Resta, Aug 29 2018 *)
Extensions
More terms from Giovanni Resta, Aug 28 2018
Comments