login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A099727 Concatenations of six consecutive primes forming a prime. 3
113127131137139149, 569571577587593599, 727733739743751757, 733739743751757761, 739743751757761769, 102110311033103910491051, 105110611063106910871091, 110911171123112911511153, 118111871193120112131217, 138113991409142314271429 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
The prime 113127131137139149 is a concatenation of the consecutive primes 113, 127, 131, 137, 139 and 149.
MAPLE
with(numtheory): with(StringTools):
KD := proc() local a ;
a:= parse(cat(ithprime(n), ithprime(n+1), ithprime(n+2), ithprime(n+3), ithprime(n+4), ithprime(n+5)));
if isprime(a) then RETURN (a);
fi;
end: seq(KD(), 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
Sequence in context: A067818 A262560 A095433 * A011530 A198801 A317259
KEYWORD
nonn,base
AUTHOR
Ray G. Opao, Nov 07 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 15:26 EDT 2024. Contains 371989 sequences. (Running on oeis4.)