OFFSET
1,1
COMMENTS
The smallest mountain emirp 1231 and other terms of this sequence was mentioned by Loungrides in Prime Curios! (see link).
Question: How many are there?
There are 602 such terms. - Michael S. Branicky, Dec 31 2021
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..602 (full sequence)
G. L. Honaker, Jr. and C. K. Caldwell, Prime Curios! 1231
EXAMPLE
Illustration of a(11) = 13751 as a mountain emirp:
. . . . .
. . . . .
. . 7 . .
. . . . .
. . . 5 .
. . . . .
. 3 . . .
. . . . .
1 . . . 1
PROG
(Python) # uses A134941()
from sympy import isprime
def is_emirp(n):
if not isprime(n): return False
revn = int(str(n)[::-1])
return n != revn and isprime(revn)
print([k for k in A134941() if is_emirp(k)]) # Michael S. Branicky, Dec 31 2021
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Omar E. Pol, Dec 21 2010
EXTENSIONS
More terms from Nathaniel Johnston, Dec 29 2010
Terms a(31) and beyond from Michael S. Branicky, Dec 31 2021
STATUS
approved