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

A277206
Primes that become palindromic primes when the least significant digit is deleted.
2
23, 29, 31, 37, 53, 59, 71, 73, 79, 113, 1013, 1019, 1319, 1511, 1811, 1913, 3137, 3533, 3539, 3733, 3739, 3833, 7573, 7577, 7873, 7877, 7879, 9199, 9293, 105019, 106013, 106019, 113111, 113117, 114113, 124213, 127217, 127219, 128213, 133319, 138311, 138319
OFFSET
1,1
COMMENTS
113 is the only term in the sequence with an odd number of digits.
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000 a(n) for n = 1..500 from Colin Barker.
PROG
(PARI) revint(n) = m=n%10; n\=10; while(n>0, m=m*10+n%10; n\=10); m
L=List(); forprime(n=2, 100000, r=n\10; if(isprime(r) && revint(r)==r, listput(L, n))); Vec(L)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Apr 11 2017
STATUS
approved