I'm trying to explicitly derive the number $B_{2,k}$ of all labelled bipartite graphs with $k$ left nodes, $k$ right nodes, and every node has degree $2$. (these are labelled, balanced, 2-regular bipartite graphs).
I restrict to the case that $k$ is even.
To address the "what did You try so far" my question is two-fold, I present my approach in the following, and would like to know how to proceed, but I'm also generally interested in better approaches.
My approach:
My idea was to add pairs of edges to the vertices of the left node set $V_1$ and partition the "unfinished" graphs by the numbers $(n_0,n_1,n_2)$ where $n_k$ counts the number of vertices in $V_2$ which already have $k$ edges attached.
That is, I start with an unfinished graph of type $(6,0,0)$ and at each step I add two edges to the first unprocessed vertex of $V_1$ to two different vertices of the $n_0+n_1$ possible vertices.
As an illustration the structure of the construction scheme is shown here for $k=4,6$
This scheme is $O(k)$ in space and $O(k^2)$ in time, so I try to seek an explicit solution.
In general, the scheme can be expressed as a recurrence for the number $C_{n_0,n_1,n_2}$ of "unfinished graphs" $C_{k,0,0}=1$ (an empty picture with no edges) I would obtain $B_{2,k}=C_{0,0,k}$ (a full drawn picture of a graph where all right nodes have 2 edges).
This recurrence is
$$ C_{n_0,n_1,n_2} = \binom{n_1+2}{2}C_{n_0,n_1+2,n_2-2} + \binom{n_0+2}{2}C_{n_0+2,n_1-2,n_2} +\binom{n_0+1}{1}\binom{n_1}{1}C_{n_0+1,n_1,n_2-1} + \delta_{n_0,k}\delta_{n_1,0}\delta_{n_2,0} $$
The recurrence is formulated such that it is true also for negative $n_k$ and defining the generating function $C(z_0,z_1,z_2)=\sum_{n_k}C_{n_0,n_1,n_2}z_0^{n_0}z_1^{n_1}z_2^{n_2}$, the recurrence can be summed to the following equation
$$ C(z) = (\tfrac{1}{2}z_2^2 \partial_1^2 + \tfrac{1}{2}z_1^2 \partial_0^2 + z_1 z_2 \partial_0\partial_1)C(z) + z_o^k $$
At this point I would have to compute $\partial_2^k C(z)|_{z=0}$ but I have no idea how to solve this.
Moreover, I doubt this recurrence is the best way to formulate this. It looks simple to sum, but it unneccesarily incorporates all problems for different $k$ in one object, whereas they are not connected (only the coefficients with $n_1+n_2+n_3=k$ are connected and belong to the problem $k$).