OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..640
EXAMPLE
877->778+6=28^2; 8101->1018+6=32^2; 3049->9403+6=97^2.
MATHEMATICA
Select[Prime[Range[30000]], IntegerQ[Sqrt[FromDigits[Reverse[ IntegerDigits[#]]] + 6]]&] (* Vincenzo Librandi, Sep 15 2013 *)
Select[Prime[Range[30000]], IntegerQ[Sqrt[IntegerReverse[#]+6]]&] (* Harvey P. Dale, Aug 13 2024 *)
PROG
(Magma) [p: p in PrimesInInterval(2, 350000) | IsSquare(q+6) where q is Seqint(Reverse(Intseq(p)))]; // Vincenzo Librandi, Sep 15 2013
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Vincenzo Librandi, Nov 04 2009
STATUS
approved