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.

Showing 1-1 of 1 results.

A217655 Consider sets of 3 consecutive primes a

Original entry on oeis.org

8917523, 17051707, 24662467, 25173593, 27001199, 37757639, 38089453, 42629173, 44310817, 67142137, 67816601, 76317653, 80517691, 82772143, 82843753, 83929789, 84980743, 90007363, 94905269, 99099773, 99524219, 117813307, 119401577, 129163457, 147426791, 162159887
Offset: 1

Views

Author

Zak Seidov, Oct 09 2012

Keywords

Examples

			a(1) = 8917523 because {8917463, 8917523, 8917663} is the first set of 3 consecutive primes a, b, c with c-a = 200.
		

Crossrefs

Programs

  • Maple
    a :=2 :
    b := nextprime(a) :
    c := nextprime(b) :
    for i from 1 do
        if c-a= 200 then
            print(b);
        end if;
        a := b ;
        b := c ;
        c := nextprime(b) ;
    end do:  # R. J. Mathar, Nov 07 2012
  • Mathematica
    Select[Partition[Prime[Range[91*10^5]],3,1],#[[3]]-#[[1]]==200&][[;;,2]] (* Harvey P. Dale, Jul 17 2025 *)
Showing 1-1 of 1 results.