login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A086924
Primes such that sum of the first and last digits is a square.
1
2, 13, 31, 79, 97, 103, 113, 163, 173, 193, 227, 257, 277, 311, 331, 613, 643, 653, 673, 683, 709, 719, 739, 769, 811, 821, 881, 907, 937, 947, 967, 977, 997, 1013, 1033, 1063, 1093, 1103, 1123, 1153, 1163, 1193, 1213, 1223
OFFSET
1,1
MATHEMATICA
fldsQ[n_]:=Module[{idn=IntegerDigits[n]}, IntegerQ[Sqrt[ idn[[1]] + idn[[-1]]]]]; Select[Prime[Range[200]], fldsQ] (* Harvey P. Dale, Aug 12 2017 *)
PROG
(PARI) okdigs(n) = digs = digits(n); issquare(digs[1]+digs[#digs]);
isok(n) = isprime(n) && okdigs(n); \\ Michel Marcus, Oct 05 2013
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Zak Seidov, Sep 20 2003
STATUS
approved