| Projects on Google Code | Results 1 - 1 of 1 |
= The Problem =
This is C++ code to compute good ABC triples, defined as:
A good abc triple is a set of 3 positive integers a, b, c such that
# a + b = c
# gcd(a,b,c) = 1
# c > rad(abc)
where rad(n) is the product of all primes dividing n for n a positive integer.
The ratio of a good...