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.

Previous Showing 11-20 of 27 results. Next

A147639 Numbers C which generate successive records of the merit function of the ABC conjecture admitting only C which are powers of 2.

Original entry on oeis.org

4, 8, 16, 32, 64, 128, 1048576
Offset: 1

Views

Author

Artur Jasinski, Nov 09 2008

Keywords

Comments

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 A000079, which avoids some early larger records that would be created by unrestricted C, and leads to a slower increase of the L-values.
If the ABC conjecture is true this sequence is finite.
The associated numbers B for this case are A147638, the associated A are A147640.

Examples

			The case C=2 does not create a valid (A,B,C) triple, so C=4 is the first case, which sets a first record L=0.7737 with (A,B,C)=(1,3,4). The next admitted case, C=8, sets a new record L=0.7879 with (A,B,C)=(1,7,8), and so do (A,B,C)=(1,15,16) with L=0.8151. For C=32, we consider the largest L possible for A<B<C, which is (A,B,C)=(5,27,32) with L=1.0189. The value L=0.839 from (A,B,C)=(1,31,32) at the same C is smaller and discarded.
		

Crossrefs

Programs

  • Maple
    Digits := 120 : A007947 := proc(n) local f, p; f := ifactors(n)[2] ; mul( op(1, p), p=f) ; end:
    L := proc(A, B, C) local rad; rad := A007947(A*B*C) ; evalf(log(C)/log(rad)) ; end:
    crek := -1 : for x from 2 do C := 2^x ; 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: od: # R. J. Mathar, Aug 28 2009

Extensions

a(2) corrected by R. J. Mathar, Aug 28 2009

A147640 The numbers A associated with the search for records in the ABC conjecture constrained as described in A147639.

Original entry on oeis.org

1, 1, 1, 5, 1, 3, 1701
Offset: 1

Views

Author

Artur Jasinski, Nov 09 2008

Keywords

Comments

The standard way to search for records in the ABC conjecture is to run with the C parameter through all the integers A000027. If this search space is diluted by admitting only powers of 2 as in A147639, the sequence of records changes. This sequence here lists the A such that the triples (A=a(n), B=A147638(n), C=A147639(n)) locate records for this search when C is restricted to powers of 2.

Crossrefs

Extensions

Definition and comment edited by R. J. Mathar, Aug 28 2009

A147800 Minimal value of A007947(m*(5^n-m)) with m coprime to 5.

Original entry on oeis.org

2, 6, 22, 42, 222, 366, 2046, 13962, 10626, 79926, 293262
Offset: 1

Views

Author

M. F. Hasler, Nov 13 2008

Keywords

Comments

The minima are reached for m values given in A147803.
This is related to the abc conjecture.
All terms of this sequence are even, so one could also consider A147800/2 = 1, 3, 11, 21, 111, 183, 1023, 6981, 5313, 39963, 146631, ...

Crossrefs

Cf. A007947, A147803 (m values), A143702 (analog for 2^n), A147801 (analog for 3^n), A147298 (general case).

Programs

  • PARI
    A147800(n, p=5) = {my(m=n=p^n); for(a=1, (n-1)\2, a%p || next; A007947(n-a)*A007947(a)A007947((n-a)*a)); m; }

A143702 a(n) is the minimal values of A007947((2^n)*m*(2^n-m)).

Original entry on oeis.org

2, 6, 14, 30, 30, 42, 30, 78, 182, 1110, 570, 1830, 6666, 2310, 2534, 5538, 9870, 20010, 141270, 14070, 480090, 155490, 334110, 1794858, 2463270, 2132130, 2349390
Offset: 1

Views

Author

Artur Jasinski, Nov 10 2008

Keywords

Comments

The product of distinct prime divisors of (2^n)*m*(2^n-m) is also called the radical of that number: rad((2^n)*m*(2^n-m)).
For numbers m see A143700.

Crossrefs

Programs

  • Mathematica
    aa = {1}; bb = {1}; rr = {2}; Do[logmax = 0; k = 2^x; w = Floor[(k - 1)/2]; Do[m = FactorInteger[n (k - n)]; rad = 1; Do[rad = rad m[[s]][[1]], {s, 1, Length[m]}]; log = Log[k]/Log[rad]; If[log > logmax, bmin = k - n; amax = n; logmax = log; r = rad], {n, 1, w, 2}]; Print[{x, amax}]; AppendTo[aa, amax]; AppendTo[bb, bmin]; AppendTo[rr, 2*r]; AppendTo[a, {x, logmax}], {x, 2, 15}]; rr (* Artur Jasinski with assistance of M. F. Hasler *)

Extensions

Name changed and a(1) added by Jinyuan Wang, Aug 11 2020

A147641 Numbers B in the triples (A,B,C) that set a record in the L-function of the ABC conjecture if the search for C admits only the restricted integer subset of A009967 as described in A147642.

Original entry on oeis.org

16, 512, 12005, 6436341
Offset: 1

Views

Author

Artur Jasinski, Nov 09 2008

Keywords

Comments

If the ABC conjecture is true this sequence is finite.
For numbers A for this case see A147643.

Crossrefs

A147642 Numbers C which generate successive records of the merit function of the ABC conjecture admitting only C which are powers of 23.

Original entry on oeis.org

23, 529, 12167, 6436343
Offset: 1

Views

Author

Artur Jasinski, Nov 09 2008

Keywords

Comments

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 form 23^x, see A009967, which avoids some early larger records that would be created by unrestricted C, and leads to a slower increase of the L-values.
For associated B for this case see A147641, for associated A see A147643.

Examples

			C= 23 is the first candidate (and therefore by definition a record). Scanning the pairs (A,B) for this C we have L-values of L(1,22,23) = 0.5035, L(2,21,23) = 0.456, ... L(6,17,23) = 0.404, L(7,16,23) = 0.542 ,... L(11,12,23) = 0.428. The largest L-value stems from (A=7,B=16) which means the representative triple of the first record is (A,B,C) = (7,16,23).
C= 23^2= 529 is the next candidate. Scanning again all (A,B) values subject to the constraints we achieve L(17,512,529) = 0.941... (Smaller ones like L(81,448,529) = 0.9123... are discarded). Since the L-value for C=529 is larger than the L-value for C=23, the next record is C=529 with representatives (A,B,C)= (17,512,529).
The third candidate is C= 23^3= 12167. This generates a maximum of L(162,12005,12167) = 1.1089... (smaller values like L(17,12150,12167) = 1.0039.. discarded) which is again larger than the maximum of the previous record (which was 0.941..) So the C-value of 12167 is again a record-holder.
		

Crossrefs

A147801 Minimal value of A007947(m*(3^n-m)) with m coprime to 3.

Original entry on oeis.org

2, 2, 10, 10, 22, 110, 278, 238, 1054, 1342, 11066, 6118, 18734, 107030, 557270, 163030, 1440430, 2195110, 11016290, 3641210, 23250370, 38188766
Offset: 1

Views

Author

M. F. Hasler, Nov 13 2008

Keywords

Comments

Related to the abc conjecture. The minima are reached for m values given in A147802.
All terms of this sequence are even, so one could also consider A147801/2 = 1, 1, 5, 5, 11, 55, 139, 119, 527, 671, 5533, 3059, 9367, 53515, 278635, 81515, ...

Crossrefs

Cf. A007947, A147298 (general case), A143702 (analog for 2^n), A147800 (analog for 5^n), A147802.

Programs

  • PARI
    A147801(n, p=3) = {my(m=n=p^n); for(x=1, (n-1)\2, x%p || next; A007947(n-x)*A007947(x)A007947((n-x)*x)); m; }

Extensions

a(17)-a(22) from Jinyuan Wang, Aug 11 2020

A147803 Least m coprime to 5 minimizing A007947(m*(5^n-m)).

Original entry on oeis.org

1, 1, 4, 49, 128, 9, 36864, 19332, 4508, 121, 2
Offset: 1

Views

Author

M. F. Hasler, Nov 13 2008

Keywords

Comments

The minima are given in A147800.
This is related to the abc conjecture: Since m is coprime to 5, it is also coprime to 5^n and thus to 5^n-m. Thus the squarefree kernel A007947(m*(5^n-m)*5^n) = 5*A007947(m*(5^n-m)).

Crossrefs

Cf. A007947, A147298 (general case), A147800 (value of minima), A143700 (analog for 2^n), A147802 (analog for 3^n), A147300 (analog for any number).

Programs

  • PARI
    A147803(n,p=5) = {my(b, m=n=p^n); for(a=1, n\2, a%p || next; A007947(n-a)*A007947(a)A007947((n-a)*b=a)); b; }

A179017 Odd numbers c such that c*(c^2 - 1)/4 is squarefree.

Original entry on oeis.org

3, 5, 11, 13, 21, 29, 43, 59, 61, 67, 69, 77, 83, 85, 93, 115, 123, 131, 133, 139, 141, 155, 157, 165, 173, 187, 203, 205, 211, 213, 219, 221, 227, 229, 237, 259, 267, 277, 283, 285, 291, 309, 317, 331, 347, 355, 357, 365, 371, 373, 381, 389, 403, 411, 419, 421
Offset: 1

Views

Author

Artur Jasinski, Jun 24 2010

Keywords

Comments

Original title was: "Numbers c such that (c^2-1)c is square free and gcd(c-1,c,c+1)=1", but (c^2-1)c is never squarefree for odd c, and gcd(n,n+1) is always = 1. - M. F. Hasler, Nov 03 2013
These numbers c with distribution a+b=c such that a=(c-1)/2 (see A172186) and b=(c+1)/2 (see A179019) have minimal possible values with function L(a,b,c) = log(c)/log(N(a,b,c)) = log(c)/log((c^2-1)c/4).
This function is minimal orbital in hypothesis (a,b,c).
There are no numbers or distributions which have value L less than log(c)/log((c^2-1)*c/4).
Equivalently, odd squarefree numbers c such that (c^2 - 1)/4 is also squarefree. - Jon E. Schoenfield, Feb 13 2023
The asymptotic density of this sequence is Product_{p prime} (1 - 3/p^2) = A206256 = 0.125486980905... (Tsang, 1985). - Amiram Eldar, Feb 26 2024

Crossrefs

Programs

  • Mathematica
    aa = {}; Do[If[(GCD[x, (x - 1)/2] == 1) && (GCD[x, (x + 1)/2] == 1) && (GCD[(x - 1)/2, (x + 1)/2] == 1), If[SquareFreeQ[(x^2 - 1) x/4], AppendTo[aa, x]]], {x, 2, 1000}]; aa
  • PARI
    forstep(n=3,421,2,issquarefree(n*(n^2-1)/4)&&print1(n",")) \\ M. F. Hasler, Nov 03 2013
    
  • PARI
    is(n)=n%2 && issquarefree(n) && issquarefree(n^2\4) \\ Charles R Greathouse IV, Mar 11 2014

Formula

a(n) = 2*A172186(n) + 1. - Bernard Schott, Mar 06 2023

Extensions

Edited by M. F. Hasler, Nov 03 2013

A147799 Minimal value of A007947(m*(7^n-m)) with m coprime to 7.

Original entry on oeis.org

6, 6, 30, 30, 282, 2262, 17034, 36006, 71070
Offset: 1

Views

Author

M. F. Hasler, Nov 13 2008

Keywords

Comments

The minima are reached for m values given in A147804.
This is related to the abc conjecture.
All terms of this sequence are even, so one could also consider A147799/2 = 3, 3, 15, 15, 141, 1131, 8517, 18003, 35535, ... So far these terms are also multiples of 3, but this might be a coincidence.

Crossrefs

Cf. A007947, A147804 (m values); A143702, A147801, A147800 (analog for 2^n, 3^n, 5^n), A147298 (general case).

Programs

Previous Showing 11-20 of 27 results. Next