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

A235149
Primes p such that (p reversed) + 7 is also a prime.
1
43, 61, 67, 229, 241, 271, 283, 409, 421, 439, 457, 601, 643, 661, 673, 2011, 2017, 2029, 2113, 2131, 2161, 2179, 2221, 2269, 2287, 2293, 2341, 2389, 2437, 2467, 2521, 2551, 2557, 2707, 2749, 2791, 2803, 2833, 2857, 4003, 4027, 4051, 4093, 4129, 4159, 4201, 4339, 4357
OFFSET
1,1
LINKS
MATHEMATICA
Select[Prime[Range[6000]], PrimeQ[FromDigits[Reverse[IntegerDigits[#]]] + 7]&]
Select[Prime[Range[600]], PrimeQ[IntegerReverse[#]+7]&] (* Harvey P. Dale, May 20 2023 *)
PROG
(Magma) [p: p in PrimesUpTo(6000) | IsPrime(q+7) where q is Seqint(Reverse(Intseq(p)))];
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Jan 04 2014
STATUS
approved