OFFSET
1,1
COMMENTS
LINKS
P. Corvaja and U. Zannier, On the greatest prime factor of (ab+1)(ac+1), Proceedings of the American Mathematical Society 131 (2003), pp. 1705-1709. See also arXiv:math/0205136 [math.NT], 2002.
MATHEMATICA
(* This is only a recomputation of the existing sequence. *)
(* Max exponents: *) jmax = 26; kmax = 12;
r[j_, k_] := Reduce[a > b > c > 0 && (a b + 1)(a c + 1) == 2^j*3^k , {a, b, c}, Integers];
Reap[Do[rr = r[j, k]; If[rr =!= False, Print[{j, k, 2^j*3^k}]; Sow[2^j*3^k]], {j, 1, jmax}, {k, 1, kmax}]][[2, 1]] // Union (* Jean-François Alcover, Dec 05 2018 *)
PROG
CROSSREFS
KEYWORD
nonn,fini
AUTHOR
M. F. Hasler, Nov 19 2018
STATUS
approved