Is there a theory from which the following problem comes? Does this type of problem have a name?
Find the largest possible number of $k$-element sets consisting of points from some finite set and have pairwise singleton or empty intersections.
I hope that was clear. If not, here's an example for $k=3$:
Let the set of points be $S=\{1,2,3,4,5,6\}$. The most 3-element sets (with pairwise singleton or empty intersections) that can be constructed from $S$ is 4, such as $\{456,236,124,135\}$.
I made a table for $|S|=3,4,5,6,7,8,9$ and got $1,1,2,4,7,8,12$, respectively, hoping I could dig up some information from OEIS.
I read a little on Steiner systems, and although it feels like I'm in the neighborhood, I'm not confident...
Edit1: typos.
Edit2: Johnson graphs and (for $k=3$) Steiner Triple Systems (STS) seem close to what I'm looking for. The condition of "pairwise singleton or empty intersections" is equivalent to "every 2-subset of S occurs in at most one $k$-element set". STS require that every 2-subset of S occurs in exactly one $3$-element set".
Edit3: Thank you to everyone who replied! All of your comments helped me push through a barrier I was facing for some time.