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”).

A012884
Numbers such that every prefix and suffix is 1 or a prime.
5
1, 2, 3, 5, 7, 11, 13, 17, 23, 31, 37, 53, 71, 73, 113, 131, 137, 173, 197, 311, 313, 317, 373, 797, 1373, 1997, 3137, 3797, 7331, 73331, 739397
OFFSET
1,2
COMMENTS
Last term is 739397 (confirmed by David W. Wilson).
Intersection of A012883 and A143390. [Reinhard Zumkeller, Aug 13 2008]
MATHEMATICA
prQ[n_] := n == 1 || PrimeQ[n];
okQ[n_] := Module[{dd, nd}, dd = IntegerDigits[n]; nd = Length[dd]; AllTrue[Range[nd], prQ@ FromDigits@ Take[dd, #]&] && AllTrue[Range[nd-1], prQ@ FromDigits@ Drop[dd, #]&]];
{1}~Join~Select[Prime@Range[60000], okQ] (* Jean-François Alcover, Nov 20 2019 *)
CROSSREFS
Cf. A068669.
Sequence in context: A350535 A160337 A190222 * A068669 A316412 A100553
KEYWORD
nonn,fini,full,nice,base
AUTHOR
Larry Calmer (larry(AT)wri.com), Simon Plouffe
STATUS
approved