|
| |
|
|
A124582
|
|
Primes p such that q-p >= 6, where q is the next prime after p.
|
|
7
| |
|
|
23, 31, 47, 53, 61, 73, 83, 89, 113, 131, 139, 151, 157, 167, 173, 181, 199, 211, 233, 241, 251, 257, 263, 271, 283, 293, 317, 331, 337, 353, 359, 367, 373, 383, 389, 401, 409, 421, 433, 443, 449, 467, 479, 491, 503, 509, 523, 541, 547, 557, 563, 571, 577
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
REFERENCES
| K. Soundararajan, Small gaps bewteen prime numbers: the work of Goldston-Pintz-Yildirim, Bull. Amer. Math. Soc., 44 (2007), 1-18.
|
|
|
LINKS
| R. Zumkeller, Table of n, a(n) for n = 1..1000
Index entries for primes, gaps between
|
|
|
MAPLE
| d:=6; M:=1000; t0:=[]; for n from 1 to M do p:=ithprime(n); if nextprime(p) - p >= d then t0:=[op(t0), p]; fi; od: t0;
|
|
|
MATHEMATICA
| t={}; q=6; Do[If[Prime[n+6]-Prime[n+5]>=q, AppendTo[t, Prime[n+5]]], {n, 1, 200}]; t (* From Vladimir Joseph Stephan Orlovsky, Feb 02 2012 *)
|
|
|
CROSSREFS
| Complement of A124589.
Cf. A134099, A134100, A134101.
Sequence in context: A023679 A107662 A083370 * A130796 A031924 A162587
Adjacent sequences: A124579 A124580 A124581 * A124583 A124584 A124585
|
|
|
KEYWORD
| nonn,changed
|
|
|
AUTHOR
| N. J. A. Sloane (njas(AT)research.att.com), Dec 19 2006
|
| |
|
|