cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A099727 Concatenations of six consecutive primes forming a prime.

Original entry on oeis.org

113127131137139149, 569571577587593599, 727733739743751757, 733739743751757761, 739743751757761769, 102110311033103910491051, 105110611063106910871091, 110911171123112911511153, 118111871193120112131217, 138113991409142314271429
Offset: 1

Views

Author

Ray G. Opao, Nov 07 2004

Keywords

Examples

			The prime 113127131137139149 is a concatenation of the consecutive primes 113, 127, 131, 137, 139 and 149.
		

Crossrefs

Programs

  • 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 *)