Given a set of $v$ numbers. Fix $v$. How many sets of $v$ sorted triples can be created, matching the following conditions:
- two triples shall have atmost one number in common
- over all triples each number shall appear three times?
A representative example set of triples with $v=8$: $$ S_A=(\color{red}1,\color{blue}2,\color{green}5)\;;\;S_B=(\color{blue}2,\color{grey}3,\color{purple}6)\;;\;S_C=(\color{grey}3,\color{pink}4,\color{orange}7)\;;\;S_D=(\color{red}1,\color{pink}4,8) $$ $$ S_E=(\color{blue}2,\color{orange}7,8)\;;\;S_F=(\color{grey}3,\color{green}5,8)\;;\;S_G=(\color{pink}4,\color{green}5,\color{purple}6)\;;\;S_H=(\color{red}1,\color{purple}6,\color{orange}7) $$
Can this be seen as $(v, b, r, k, λ)$ block designs? When I read the definition there I find:
- $v(=8)$: points, number of elements of X
- $b(=8)$: number of blocks
- $r(=3)$: number of blocks containing a given point
- $k(=3)$: number of points in a block
- $\lambda(=1)$: number of blocks containing any 2 distinct points
But obviously this doesn't fulfill the condition ${\displaystyle \lambda (v-1)=r(k-1)}$...
UPDATE My example looks like a subset of elements of the Steiner Triple System $STS(9)$, where subsets that contain $9$ are omitted.
The question is motivated by bipartite cubic graphs. Bipartiteness forces $v=b$, cubicity asks for $r=k=3$. $\lambda =1 $ means that the graph is simple and has no squares.
The example above is derived from the graph shown here. It has 6 octagons living on a double torus. Black points are labelled with numbers $1$ to $6$; white points are labelled with characters $A$ to $H$.