login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A130510 ABC conjecture: values of c in the list of "abc-hits". 15

%I #17 Oct 19 2023 22:31:48

%S 9,32,49,64,81,81,125,128,225,243,245,250,256,256,289,343,375,512,512,

%T 513,539,625,625,625,676,729,729,729,729,961,968,1025,1029,1216,1331,

%U 1331,1331,1369,1587,1681,2048,2048,2048,2057,2187,2187,2187,2197,2197

%N ABC conjecture: values of c in the list of "abc-hits".

%C 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. The corresponding values of a and rad(a*b*c) are in the sequences A130511 and A130512.

%D See A120498

%H T. D. Noe, <a href="/A130510/b130510.txt">Table of n, a(n) for n=1..1269</a> (for c up to 10^6)

%H Sander R. Dahmen, <a href="http://dx.doi.org/10.1016/j.jnt.2007.06.009">Lower bounds for numbers of ABC-hits</a>, J. Numb. Theory, Volume 128, Issue 6, June 2008, pp. 1864-1873.

%H Noam D. Elkies, <a href="http://www.math.harvard.edu/hcmr/issues/1.pdf">The ABC's of Number Theory</a>, The Harvard College Mathematics Review, Vol. 1, No. 1, Spring 2007, pp. 57-76.

%H Brian Hayes, <a href="http://bit-player.org/2007/easy-as-abc">Easy as abc</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Abc_conjecture">abc conjecture</a>

%e 81 appears twice because 1+80=81 and 32+49=81 are two abc-hits.

%t rad[n_] := If[n==1, 1, Times@@(Transpose[FactorInteger[n]][[1]])]; nn=1000; Do[If[ !PrimeQ[c], Do[b=c-a; If[GCD[a,b]==1 && rad[a*b*c]<c, Print[{a,b,c,rad[a*b*c]}]], {a,c/2}]], {c,2,nn}]

%o (Python)

%o from itertools import count, islice

%o from math import prod, gcd

%o from sympy import primefactors

%o def A130510_gen(startvalue=1): # generator of terms >= startvalue

%o for c in count(max(startvalue,1)):

%o pc = set(primefactors(c))

%o for a in range(1,(c>>1)+1):

%o b = c-a

%o if gcd(a,b)==1 and c>prod(set(primefactors(a))|set(primefactors(b))|pc):

%o yield c

%o A130510_list = list(islice(A130510_gen(),30)) # _Chai Wah Wu_, Oct 19 2023

%Y Cf. A120498 (unique values of c).

%Y Cf. A130511, A130512 (a, and rad(a*b*c)).

%Y Cf. A225425 (number of solutions with c < 10^n).

%Y Cf. A225426 (triples of numbers a,b,c).

%K nonn

%O 1,1

%A _T. D. Noe_, Jun 01 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 3 12:40 EDT 2024. Contains 375670 sequences. (Running on oeis4.)