OFFSET
2,1
COMMENTS
The uniqueness follows from generalization of Bertrand's Postulate. - Franklin T. Adams-Watters.
LINKS
Robert Israel, Table of n, a(n) for n = 2..10000
Eric Weisstein's World of Mathematics, Bertrand's Postulate
MAPLE
p:= 3: R:= NULL:
for i from 2 to 100 do
pp:= p; p:= nextprime(p);
rmax:= 0:
for q from pp+1 to p-1 do
r:= max(numtheory:-factorset(q));
if r > rmax then rmax:= r; qmax:= q fi
od;
R:= R, qmax
od:
R; # Robert Israel, Apr 01 2021
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
STATUS
approved