OFFSET
1,1
COMMENTS
These are primes in A383896(n).
The first pair of twin echo primes is 6467806769 and 6467806771.
Conjecture: There are infinitely many echo primes.
MATHEMATICA
Select[Prime@Range@3000, (f=FactorInteger[#-1][[-1, 1]]; Mod[#, 10^IntegerLength@f]==f)&]
PROG
(Python)
from sympy import factorint, isprime
def ok(n): return n > 2 and isprime(n) and str(n).endswith(str(max(factorint(n-1))))
print([k for k in range(30000) if ok(k)]) # Michael S. Branicky, May 15 2025
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Giorgos Kalogeropoulos, May 15 2025
STATUS
approved
