Assume that, we know the number $k$, the number of distinct subsets of $[n]$ ( whose value we want to come up with ). The condition is that, no two subsets from the $k$ above should result in an empty set when we calculate intersection.
We want to find out smallest possible value for such $n$.
P.S. for example, if $k = 2$, then $n$ should be 2. Because for $n = 1$, the possible subsets are $\{1\}, \{\}$ and their intersection is $\varnothing$. With $n = 2$, the $2$ subsets can be $\{1\},\{1,2\}$. If we go like this, for $k=3$, we need $n = 3$ and for $k=4$, $n = 3$ is sufficient. How will this series progress(the value of $n$ for $k$)? Can we find a closed-form formula for $n$ in terms of $k$?