OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..2170
EXAMPLE
131 is a term because it is a prime obtained by prefixing a 1 to the prime 31.
1409 is a term because it is a prime obtained by prefixing a 1 to the prime 409.
MATHEMATICA
Select[Table[FromDigits[Join[IntegerDigits[1], IntegerDigits[Prime[n]]]], {n, 300}], PrimeQ]
Select[Table[10^IntegerLength[p]+p, {p, Prime[Range[200]]}], PrimeQ] (* Harvey P. Dale, Oct 17 2021 *)
PROG
(Magma) [k: p in PrimesUpTo(1500) | IsPrime(k) where k is Seqint(Intseq(p) cat [1])];
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Jul 14 2017
STATUS
approved