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

A099727
Concatenations of six consecutive primes forming a prime.
3
113127131137139149, 569571577587593599, 727733739743751757, 733739743751757761, 739743751757761769, 102110311033103910491051, 105110611063106910871091, 110911171123112911511153, 118111871193120112131217, 138113991409142314271429
OFFSET
1,1
LINKS
EXAMPLE
The prime 113127131137139149 is a concatenation of the consecutive primes 113, 127, 131, 137, 139 and 149.
MAPLE
select(isprime, [seq(parse(cat([seq(ithprime(i), i=n+0..n+5)][])), n=1..500)])[]; # K. D. Bajpai, Mar 24 2014
MATHEMATICA
Select[FromDigits[Flatten[IntegerDigits/@#]]&/@Partition[Prime[Range[ 300]], 6, 1], PrimeQ] (* Harvey P. Dale, Apr 30 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Ray G. Opao, Nov 07 2004
STATUS
approved