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

A034813
Concatenations C1 and C2 are both prime (see the comment lines).
1
36, 74, 104, 132, 188, 222, 224, 305, 317, 344, 367, 368, 389, 457, 458, 475, 540, 572, 584, 608, 631, 676, 682, 689, 697, 738, 756, 760, 781, 797, 829, 841, 893, 910, 911, 914, 928, 982, 1018, 1104, 1122, 1178, 1186, 1317, 1328, 1391, 1402, 1406, 1518
OFFSET
0,1
COMMENTS
C1 = 'prevprime(n) followed by n followed by nextprime(n)'
C2 = 'nextprime(n) followed by n followed by prevprime(n)'
LINKS
EXAMPLE
n=797 -> previous prime is 787, next prime is 809, thus '787797809' and '809797787' are both primes.
MATHEMATICA
c1c2Q[n_]:=Module[{ia=IntegerDigits[NextPrime[n, -1]], ib=IntegerDigits[n], ic= IntegerDigits[NextPrime[n]]}, AllTrue[{FromDigits[Join[ia, ib, ic]], FromDigits[Join[ic, ib, ia]]}, PrimeQ]]; Select[Range[1600], c1c2Q] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Apr 06 2018 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Oct 15 1998
STATUS
approved