OFFSET
1,1
EXAMPLE
772 is a member since both 727 and 277 are primes.
MATHEMATICA
t={}; Do[p=Permutations[IntegerDigits[n]]; c=Length[p]; cn=Length[Select[Table[FromDigits[k], {k, p}], PrimeQ]]; If[!PrimeQ[n] && c>1 && cn==c-1, AppendTo[t, n]], {n, 10, 100000}]; t
PROG
(Python)
from sympy import isprime
from itertools import count, islice, permutations
def agen(): yield from (k for k in count(1) if len(set(s:=str(k)))!=1 and not isprime(k) and all((t:=int("".join(m)))==k or isprime(t) for m in permutations(s)))
print(list(islice(agen(), 28))) # Michael S. Branicky, Dec 29 2023
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jayanta Basu, May 01 2013
STATUS
approved