OFFSET
1,2
COMMENTS
Let rad(x) be the function that computes the squarefree kernel of x (see A007947). A triple {a,b,c} of positive integers with a+b=c, gcd(a,b)=1 and c > rad(a*b*c) is called an abc-hit.
LINKS
T. D. Noe, Table of (a, b, c)(n), n = 1..1269
Wikipedia, abc conjecture
MATHEMATICA
rad[n_] := If[n == 1, 1, Times @@ (Transpose[FactorInteger[n]][[1]])]; nn = 1000; t = {}; r = Table[rad[n], {n, nn}]; Do[If[! PrimeQ[c], Do[b = c - a; If[GCD[a, b] == 1 && r[[a]]*r[[b]]*r[[c]] < c, num++; AppendTo[t, {a, b, c}]], {a, c/2}]], {c, 2, nn}]; t
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, May 22 2013
STATUS
approved