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!)
A350713 Maximum smallest prime required to generate all Goldbach partitions to 10^n. 0
3, 19, 73, 173, 293, 523, 751, 1093, 1789, 1877, 2803, 3457, 3917, 4909, 5569, 6961, 7753, 9341 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The magnitude of the smallest prime required in a Goldbach partition of 2n is very small in comparison to the magnitude of the sum, 2n.
LINKS
EXAMPLE
The first three partitions with the smallest first member are (3,3), (3,5), and (3,7), so the smallest prime required to generate all Goldbach partitions up through 10^1 is 3.
MATHEMATICA
gp = Compile[{{n, _Integer}}, Block[{p = 2}, While[! PrimeQ[n - p], p = NextPrime@p]; p]]; a[n] = 3; a[n_] := Block[{k = 10^(n - 1), lmt = 10^n + 1, mx = 0}, While[k < lmt, b = gp@k; If[b > mx, mx = b]; k += 2]; mx]; (* Robert G. Wilson v, Mar 04 2022 *)
CROSSREFS
Sequence in context: A183461 A095662 A090698 * A215802 A202041 A245507
KEYWORD
nonn,more
AUTHOR
Barry Cherkas, Feb 02 2022
EXTENSIONS
a(9)-a(18) from Robert G. Wilson v, Mar 04 2022
STATUS
approved

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 31 21:26 EDT 2024. Contains 373003 sequences. (Running on oeis4.)