OFFSET
1,1
COMMENTS
An abc-hit is a triple of coprime positive integers a, b, c such that a + b = c and rad(abc) < c, where rad(n) is the largest squarefree number dividing n.
LINKS
Wikipedia, abc conjecture
EXAMPLE
a(8) = 1323 because rad(8*1323*1331) = 2*21*11 = 462 < 1331, hence (8, 1323, 1331) is an abc-hit and (8, b, b+3) isn't an abc-hit for every b where 8 < b < 1323.
MAPLE
rad:=n -> mul(i, i in factorset(n)):
min_c_for_a:=proc(n) local a, b, c, ra, rc;
for a to n do
ra:=rad(a):
for c from 2*a+1 do
if igcd(a, c)=1 then rc:=rad(c):
if ra*rc<c then b:=c-a:
if ra*rc*rad(b)<c then break fi fi fi od:
print([a, b, c]) od end;
PROG
(PARI) rad(x, y, z) = my(f=factor(x*y*z)[, 1]~); prod(i=1, #f, f[i])
is_abc_hit(x, y, z) = gcd(x, y)==1 && gcd(x, z)==1 && gcd(y, z)==1 && rad(x, y, z) < z
a(n) = my(b=n+1); while(!is_abc_hit(n, b, n+b), b++); b \\ Felix Fröhlich, May 08 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Letsko, Apr 23 2016
EXTENSIONS
More terms from Jinyuan Wang, Jun 08 2022
STATUS
approved