OFFSET
1,2
COMMENTS
The required degree of divisibility for inclusion in this sequence seems close to the maximum possible degree of divisibility. If the required degree of divisibility is increased merely by one (that is, if k is required to be divisible by all natural numbers < 1 + log(k) + log(1 + log(k))), there appear to be only these solutions: 1, 2, 6, 12, and 60. This is related to the growth rate of lcm{1,...,n} = A003418(n); see comments on A003418 by Beedassy and Sondow.
EXAMPLE
60 is a term of this sequence, because log(60) + log(1 + log(60)) ~ 5.72, and 60 is divisible by all natural numbers < 5.72.
However, 180 is not a term of this sequence, because log(180) + log(1 + log(180)) ~ 7.02, and 180 is not divisible by all natural numbers < 7.02.
MAPLE
select(k -> andmap(d -> irem(k, d) = 0, [seq(1..floor(log(k) + log(1 + log(k))))]), [seq(1..2520)]); # Peter Luschny, Jun 14 2023
PROG
(PARI) isok(k) = for(i=1, log(k) + log(1 + log(k)), if (k % i, return(0))); 1; \\ Michel Marcus, Jun 14 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Hal M. Switkay, Jun 14 2023
STATUS
approved