OFFSET
1,2
COMMENTS
11 and 31 are primes.
471 out of the first 1000 terms of this sequence are prime. - Harvey P. Dale, Jul 07 2012
EXAMPLE
11311 is prime, so 1 is a term.
113153 is prime, so 53 is a term.
MATHEMATICA
With[{c={1, 1, 3, 1}}, Select[Range[600], PrimeQ[FromDigits[ Join[ c, IntegerDigits[ #]]]]&]] (* Harvey P. Dale, Jul 07 2012 *)
PROG
(Magma) [ n: n in [1..600] | IsPrime(Seqint(Intseq(n) cat [1, 3, 1, 1])) ];
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Jun 25 2005
STATUS
approved