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!)
A290572 Least number that is the start of a gap of size n between numbers that are either prime or twice a prime (A001751). 1

%I #24 Aug 26 2017 08:24:28

%S 2,11,7,67,53,47,514,401,317,181,467,526,1069,2819,1262,3142,1382,

%T 1913,1327,4178,2477,9697,8123,8329,3274,11213,21031,5119,16382,13063,

%U 20446,44417,22193,37747,12854,46957,35617,63863,48679,20809,76166,39251,110359,59282,136898,212923,143006

%N Least number that is the start of a gap of size n between numbers that are either prime or twice a prime (A001751).

%C Numbers that are less than any later number are recorded in A290488.

%H Robert G. Wilson v, <a href="/A290572/b290572.txt">Table of n, a(n) for n = 1..261</a>

%H Robert G. Wilson v, <a href="/A290572/a290572.txt">Table of n, a(n) for n = 0..290, or 0 if no such value is known.</a>

%e a(1) is 2 since 3 - 2 = 1;

%e a(2) is 11 since 13 - 11 = 2;

%e a(3) is 7 since 10 - 7 = 3;

%e a(4) is 67 since 71 - 67 = 4; etc.

%t nxt[n_] := Block[{k = n +1}, While[ !PrimeQ[k] && !PrimeQ[k/2], k++]; k]; p = 2; q = 3; t[_] = 0; While[p < 215000, d = q - p; If[ t[d] == 0, t[d] = p]; p = q; q = nxt@ q]; t@# & /@ Range@ 47

%Y Cf. A001751, A002386, A290488, A290489.

%K nonn

%O 1,1

%A _Bobby Jacobs_ and _Robert G. Wilson v_, Aug 06 2017

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 3 16:44 EDT 2024. Contains 372221 sequences. (Running on oeis4.)