,
,
,
,
,
are six distinct prime numbers that satisfies the equation
.
What is the minimum value of
?
(Here is an example set of numbers that satisfies the equation:
)
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
quick check using Mathematica
p = Prime; z = {};
For[a = 1, a < 2, a++,
For[c = 1, c < 3, c++,
For[e = 1, e < 10, e++,
For[f = 1, f < 10, f++,
For[b = 1, b < 20, b++,
For[d = 1, d < 20, d++,
If[p@a p@b + p@c p@d == p@e*p@f && a != b != c != d != e != f, Print[p@a, " ", p@b, " ", p@c, " ", p@d, " ", p@e, " ", p@f]; Abort[]]]]]]]]
returns 2 17 3 7 5 11