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.

A118371 Fastest growing sequence of primes satisfying Goldbach's conjecture.

Original entry on oeis.org

2, 3, 5, 7, 13, 19, 23, 31, 37, 43, 47, 53, 61, 79, 83, 101, 107, 109, 113, 131, 139, 157, 167, 199, 211, 251, 269, 281, 283, 293, 307, 313, 337, 383, 401, 421, 431, 439, 449, 457, 491, 509, 521, 523, 569, 601, 643, 673, 691, 701, 769, 773, 811, 839, 863, 881
Offset: 1

Views

Author

T. D. Noe, Apr 26 2006

Keywords

Comments

Although there are 78498 primes < 10^6, only 3030 primes are required to form all even numbers < 10^6. There are 10582, 36308 and 123139 of these primes less than 10^7, 10^8 and 10^9, respectively. The asymptotic density of these primes appears to be 0. The number of these primes < x is roughly 0.85 sqrt(x log(x)).
Assuming the strong form of Goldbach's conjecture, Granville proves that thin sets of primes exist such that every even number >2 is the sum of two members of the set. - T. D. Noe, Apr 26 2006

Crossrefs

Cf. A105170 (primes unnecessary for Goldbach's conjecture).

Programs

  • Mathematica
    ps={2,3}; Do[pn=Select[2n-ps,PrimeQ]; If[Intersection[ps,pn]=={}, AppendTo[ps, Max[pn]]], {n,4,1000}]; Sort[ps]