OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
29 is in the sequence because 92+8 = 10^2.
37 is in the sequence because 73+8 = 9^2.
MATHEMATICA
Select[Prime[Range[40000]], IntegerQ[Sqrt[FromDigits[Reverse[IntegerDigits[#]]] + 8]]&] (* Vincenzo Librandi, Sep 15 2013 *)
PROG
(Magma) [p: p in PrimesUpTo(29021) | IsSquare(q+8) where q is Seqint(Reverse(Intseq(p)))]; // Vincenzo Librandi, Sep 15 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Nov 04 2009
EXTENSIONS
Removed the constraint on the squares (an arbitrary large number) by R. J. Mathar, Oct 28 2010
STATUS
approved