Let $n\in\mathbb N^+$ be a positive integer.
I am trying to find a set of $n$ distinct positive integers with minimal LCM.
What is the set of $n$ distinct integers with minimal LCM?
What is the asymptotics of this LCM as a function of $n$?
Observe that we can choose the set to be $\{1,...,n\}$, which would give a bound of $2^{O(n)}$. However, I'm not sure that this is tight.
For example, if $n=9$ then LCM$(\{1,2,3,4,5,6,7,8,9\})=2520$, but we have
LCM$(\{1,2,3,4,6,8,12,16,24\})=48$.
ADDED: see Nicolas on highly composite
Nicolas Full List
you can get a predictably small LCM by taking the first Superior Highly Composite Number with number of divisors at least your target number, you are calling that $n$
https://en.wikipedia.org/wiki/Superior_highly_composite_number
For your $7 \leq n \leq 12,$ you can get a small LCM by taking $n$ divisors of $60$
For your $13 \leq n \leq 16,$ you can get a small LCM by taking $n$ divisors of $120$
For your $17 \leq n \leq 24,$ you can get a small LCM by taking $n$ divisors of $360$
For your $25 \leq n \leq 48,$ you can get a small LCM by taking $n$ divisors of $2520$