OFFSET
1,1
COMMENTS
11 and 23 are primes.
EXAMPLE
9 is in the sequence because 11239 is prime.
63 is in the sequence because 112363 is prime.
127 is in the sequence because 1123127 is prime.
MAPLE
a:=proc(n) local z: z:=nops(convert(n, base, 10)): if isprime(1123*10^z+n)=true then n else fi end: seq(a(n), n=1..750); # Emeric Deutsch, Jul 02 2005
PROG
(Magma) [ n: n in [1..700] | IsPrime(Seqint(Intseq(n) cat [3, 2, 1, 1])) ];
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Jun 25 2005
EXTENSIONS
More terms from Emeric Deutsch, Jul 02 2005
STATUS
approved