The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A217603 Consider sets of 3 consecutive primes a, b, c such that c - a = 100, then sequence gives the values of b. 2

%I #14 Nov 14 2012 01:44:36

%S 58831,286927,360653,404941,590489,623107,651587,673747,710119,740801,

%T 779413,794831,795427,1040311,1107269,1185241,1206869,1320437,1392007,

%U 1568771,1581829,1599803,1601953,1613201,1721081,1744927,1942273,1951321,1994299,2024063

%N Consider sets of 3 consecutive primes a, b, c such that c - a = 100, then sequence gives the values of b.

%H Zak Seidov, <a href="/A217603/a217603.txt">Table of n, a, b, c for n=1..1000</a>

%H Zak Seidov, <a href="/A217603/a217603_1.txt">Table of n, a, b, c for n=1..1000</a>

%e a(1) = 58831 because {58789, 58831, 58889} is the first set of 3 consecutive primes a, b, c with c-a=100.

%e a(2) = 286927 because {286873, 286927, 286973} is the second set of 3 consecutive primes a, b, c with c-a=100.

%e a(1000) = 23090087 because {23090059, 23090087, 23090159} is the 1000th set of 3 consecutive primes a, b, c with c-a=100.

%t s = {}; a = 2; b = 3; c = 5; Do[If[c - a == 100, AppendTo[s, b]; Print[{a, b, c}]]; a = b; b = c; c = NextPrime[c], {10^5}]; s

%o (PARI) p=2;q=3;forprime(r=5,1e6,if(r-p==100,print1(q", "));p=q;q=r) \\ _Charles R Greathouse IV_, Nov 14 2012

%Y Cf. A166251, A217561, A217566, A217577.

%K nonn

%O 1,1

%A _Zak Seidov_, Oct 08 2012

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 May 13 07:22 EDT 2024. Contains 372498 sequences. (Running on oeis4.)