A224534 Prime numbers that are the sum of three distinct prime numbers.
19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307
Offset: 1
Keywords
Examples
19 = 3 + 5 + 11.
Links
- H. A. Helfgott and David J. Platt, Numerical Verification of the Ternary Goldbach Conjecture up to 8.875e30, arXiv:1305.3062 [math.NT], 2013-2014.
- H. A. Helfgott and David J. Platt, Numerical verification of the Ternary Goldbach Conjecture up to 8.875*10^30, Exp. Math. 22 (4) (2013) 406-409.
- Eric W. Weisstein, Goldbach conjecture
- Wikipedia, Goldbach's conjecture
- Wikipedia, Goldbach's weak conjecture
Programs
-
Mathematica
Union[Select[Total /@ Subsets[Prime[Range[2, 30]], {3}], PrimeQ]]
Comments