OFFSET
1,1
COMMENTS
Palindromes h such that 4*h - 7 is a square. - Bruno Berselli, Aug 29 2018
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..65
Patrick De Geest, Palindromic Quasi_Over_Squares of the form n^2+(n+X)
MATHEMATICA
palQ[n_] := Module[{idn = IntegerDigits[n]}, idn == Reverse[idn]]; Select[Table[n^2 + n + 2, {n, 0, 502000}], palQ] (* Harvey P. Dale, Sep 15 2011 *)
PROG
(Magma) [m: n in [0..10^7] | Intseq(m) eq Reverse(Intseq(m)) where m is n^2+n+2]; // Vincenzo Librandi, Mar 27 2011
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms from Giovanni Resta, Aug 28 2018
STATUS
approved