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”).

A231756
Numbers n such that reversal (n^2) plus 1 is prime.
2
1, 2, 5, 8, 9, 10, 15, 16, 17, 20, 26, 29, 46, 50, 51, 52, 79, 80, 81, 83, 90, 92, 94, 100, 142, 144, 149, 150, 159, 160, 161, 162, 167, 168, 170, 171, 172, 173, 200, 246, 247, 251, 254, 255, 258, 259, 260, 262, 264, 283, 284, 287, 289, 290, 297, 299, 449, 454
OFFSET
1,2
COMMENTS
If n is a multiple of 10, after reversal leading zeros are discarded before adding 1.
LINKS
EXAMPLE
a(3)= 5: 5^2= 25: reversing the digits gives 52: 52+1= 53 which is prime.
a(7)= 15: 15^2= 225: reversing the digits gives 522: 522+1= 523 which is prime.
MAPLE
with(StringTools):KD:= proc() local a; a:= parse(Reverse(convert((n^2), string)))+1; if isprime(a) then RETURN (n): fi; end: seq(KD(), n=1..1000);
MATHEMATICA
Select[Range[500], PrimeQ[ToExpression[StringReverse[ToString[#^2]]] + 1] &]
Select[Range[500], PrimeQ[IntegerReverse[#^2]+1]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 04 2018 *)
CROSSREFS
Cf. A005574 (numbers n: n^2 + 1 is prime).
Cf. A059007 (numbers n: n^2 reversed is a prime).
Sequence in context: A283205 A322916 A062803 * A212591 A153275 A362310
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Nov 21 2013
STATUS
approved