OFFSET
1,1
COMMENTS
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Prime[Range[3100000]], AllTrue[d = IntegerDigits[#], PrimeQ] && GreaterEqual @@ d &]
PROG
(Python)
from itertools import count, islice, chain, combinations_with_replacement
from sympy import isprime
def A364831_gen(): # generator of terms
yield 2
yield from chain.from_iterable((sorted(s for d in combinations_with_replacement('753', l) if isprime(s:=int(''.join(d)))) for l in count(1)))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
James C. McMahon, Aug 09 2023
STATUS
approved