A216323 Values for b in abc-triples with a=1.
8, 48, 63, 80, 224, 242, 288, 512, 624, 675, 728, 960, 1024, 1215, 2303, 2400, 3024, 3887, 3968, 4095, 4374, 5831, 6399, 6560, 6655, 6859, 8575, 9375, 9408, 9800, 10647, 12167, 14336, 15624, 16128, 17576, 21951, 24299, 25920, 28125, 29375, 29791
Offset: 1
Keywords
Links
- Frank M Jackson, Table of n, a(n) for n = 1..1500
- 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.
- Bart de Smit, Triples of small size [references the ABC@Home project which is inactive since 2015]
- Wolfdieter Lang, Maple program abc1bN.txt for A216323 for b in the range 1..N .
Programs
-
Maple
read "abc1bN.txt": abc1bN(30000); (with the above given maple text file).
-
Mathematica
rad[n_] := Times @@ Transpose[FactorInteger[n]][[1]]; a = 1; Table[t = {}; mx = 10^n; Do[c = a + b; If[c < mx && GCD[a, b] == 1 && Log[c] > Log[rad[a*b*c]], AppendTo[t, b]], {b, a, mx - a}], {n, 5}]; t (* T. D. Noe, Sep 24 2012 *) Rad[n_] := Module[{lst = FactorInteger[n]}, Times @@ (First /@ lst)]; lst={}; n = 1; While[Length@lst <= 10^2, If[n/Rad[n]>Rad[n+1], AppendTo[lst, n]]; n++]; lst (* Frank M Jackson, Sep 04 2024 *)
Formula
(1, b=a(n), a(n)+1) is an abc-triple (which has quality q > 1) with increasingly ordered b values. See the comment above for abc-triples.
Comments