cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A147306 Numbers C in successive records of the merit function of the ABC conjecture considering only C from A033845.

This page as a plain text file.
%I A147306 #11 Aug 04 2019 07:39:10
%S A147306 6,12,18,24,36,48,54,144,384,486,648,2304,3888,5832,279936
%N A147306 Numbers C in successive records of the merit function of the ABC conjecture considering only C from A033845.
%C A147306 In a variant of the ABC conjecture (see A120498) we look at triples (A,B,C) restricted to A+B=C, gcd(A,B)=1, and at the merit function L(A,B,C)=log(C)/log(rad(A*B*C)), where rad() is the squarefree kernel A007947, as usual. Watching for records in L() as C runs through the integers generates A147302. In this sequence here, we admit only the C of the sequence A033845, which avoids some early larger records that would be created by unrestricted C, and leads to a slower increase of the L-values.
%C A147306 If the ABC conjecture is true this sequence is finite.
%C A147306 The associated numbers B for this case are A147305, the associated A are A147307.
%e A147306 (A,B,C) = (1,5,6) defines the first record, L=0.5268.. (A,B,C)=(1,11,12) reaches L=0.5931..
%e A147306 (A,B,C) = (1,17,18) reaches L=0.6249.. The first C-number selected from A033845 that does not generate a new record is 72.
%p A147306 Digits := 120 : A007947 := proc(n) local f,p; f := ifactors(n)[2] ; mul( op(1,p),p=f) ; end:
%p A147306 L := proc(A,B,C) local rad; rad := A007947(A*B*C) ; evalf(log(C)/log(rad)) ; end:
%p A147306 isA033845 := proc(n) local f,p; f := ifactors(n)[2] ; for p in f do if not op(1,p) in {2,3} then RETURN(false) ; fi; od: RETURN( (n mod 2 = 0 ) and (n mod 3 = 0 ) ) ; end:
%p A147306 crek := -1 : for C from 3 do if isA033845(C) then for A from 1 to C/2 do B := C-A ; if gcd(A,B) = 1 then l := L(A,B,C) ; if l > crek then print(C) ; crek := l ; fi; fi; od: fi; od: # _R. J. Mathar_, Aug 24 2009
%Y A147306 Cf. A085152, A085153, A147298-A147307.
%K A147306 nonn,less,more
%O A147306 1,1
%A A147306 _Artur Jasinski_, Nov 09 2008
%E A147306 Edited by _R. J. Mathar_, Aug 24 2009