OFFSET
1,1
REFERENCES
Paul Erdős, Some of my favourite unsolved problems. Math. Japon. (1997), 527-537.
Paul Erdős and Ronald Graham, Old and new problems and results in combinatorial number theory. Monographies de L'Enseignement Mathématique (1980).
LINKS
Thomas Bloom, Problem #663, Erdős Problems.
Thomas Bloom, Problem #457, Erdős Problems.
S. A. Burr, P. Erdős, R. L. Graham, and W. Wen-Ching Li, Complete sequences of sets of integer powers, Acta Arith. (1996), 133-138.
FORMULA
T(n,k) < (1 + o(1)) * k * log(n).
T(n,k) = A007918(n+k+1) for k >= n.
For all m < k, T(m*k,k) - T(m*k,k-1) > 0 iff k is prime.
Conjecture of Erdős and Pomerance: T(n,k) < (1+o(1)) * log(n), for fixed k >= 2 and sufficiently large n.
Conjecture of Erdős and Pomerance: there exists epsilon>0, such that T(n,log(n)) >= (2+epsilon)*log(n) infinitely often.
EXAMPLE
The table begins:
3, 5, 5, 7, 7, 11, 11, 11, 11, 13...
2, 5, 7, 7, 11, 11, 11, 11, 13, 13...
3, 3, 7, 11, 11, 11, 11, 13, 13, 17...
2, 7, 11, 11, 11, 11, 13, 13, 17, 17...
5, 5, 5, 5, 11, 13, 13, 17, 17, 17...
2, 3, 5, 11, 13, 13, 17, 17, 17, 17...
3, 5, 7, 7, 7, 7, 17, 17, 17, 19...
2, 7, 7, 7, 7, 17, 17, 17, 19, 19...
3, 3, 7, 7, 17, 17, 17, 19, 19, 23...
2, 5, 5, 5, 17, 17, 19, 19, 23, 23...
MATHEMATICA
pr=Prime@Range[1000];
q[n_, k_]:=Min[Complement[pr, Union@@Table[Divisors[n+i], {i, 1, k}]]];
Table[q[n, k], {n, 1, 200}, {k, 1, 200}]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Elijah Beregovsky, Dec 16 2025
STATUS
approved
