login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A154270
Primes of the form XYX, where Y is a single digit.
7
101, 131, 151, 181, 191, 313, 353, 373, 383, 727, 757, 787, 797, 919, 929, 11311, 11411, 13313, 13513, 13613, 13913, 17117, 17317, 17417, 19219, 19319, 19819, 19919, 21121, 21221, 21521, 21821, 23623, 27127, 27427, 27527, 27827, 29129
OFFSET
1,1
LINKS
MATHEMATICA
Join[{101}, f[n_]:=Block[{len=Floor[Log[10, n]+1]}, Select[10^(1+len) n+10^len*Table[k (10^1-1)/9, {k, 9}]+n, PrimeQ@#&]]; Array[f, 40]//Flatten]; Vincenzo Librandi, Jul 27 2012
Select[Flatten[Table[FromDigits[Flatten[Join[{IntegerDigits[n], i, IntegerDigits[ n]}]]], {n, 50}, {i, 0, 9}]], PrimeQ] (* Harvey P. Dale, Aug 22 2014 *)
PROG
(Magma) [p: d in [0..9], n in [1..40 by 2] | IsPrime(p) where p is n*10^(t+1)+d*10^t+n where t is #Intseq(n)]; // Vincenzo Librandi, Sep 14 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Jan 06 2009
EXTENSIONS
Inserted 19919. R. J. Mathar, Jan 07 2009
STATUS
approved