OFFSET
1,2
COMMENTS
The ABC conjecture would imply that if the prime factors of A, B, C are prescribed in advance, then there is only a finite number of solutions to the equation A + B = C with gcd(A,B,C)=1 (indeed it would bound C to be no more than "roughly" the product of those primes). So in particular there ought to be only finitely many pairs of adjacent integers whose prime factors are limited to {2, 3, 5, 7} (D. Rusin).
LINKS
MATHEMATICA
Select[Range[10000], FactorInteger[ # (# + 1)][[ -1, 1]] <= 7 &] - T. D. Noe, Mar 03 2008
PROG
(PARI) for(n=1, 9e6, vecmax(factor(n++)[, 1])<8 && vecmax(factor(n--+(n<2))[, 1])<8 && print1(n", ")) \\ M. F. Hasler, Jan 16 2015
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Benoit Cloitre, Jun 21 2003
EXTENSIONS
Edited by Dean Hickerson, Jun 30 2003
STATUS
approved