A375622 Numbers k such that k gives the maximum quality for abc triples of the form (1, k^n-1, k^n) where n is the sequence index.
4375, 49, 361, 7, 9, 19, 129, 7, 28, 3, 243, 19, 625, 26, 9, 3
Offset: 1
Examples
a(2) = 49 because from the sample of 100 abc triples of the form (1, k^2-1, k^2) (see A375019) where k takes values 3, 7,..., 49,..., 3362, 3375, when k = 49 = A375019(12), we get maximum quality q = 1.45567... with triple (1, 2400, 2401).
Links
- Elise Alvarez-Salazar, Alexander J. Barrios, Calvin Henaku, and Summer Soller, On abc triples of the form (1,c-1,c), arXiv:2301.01376 [math.NT], 2023.
Programs
-
Mathematica
Rad[n_] := Module[{lst=FactorInteger[n]}, Times@@(First/@lst)]; Table[(lst={}; k=2; While[Length@lst<100, If[Rad[(k^n-1)*k]
Comments