Consider paths that touch $n$ nodes of a complete graph, and let's number these nodes from $1$ to $n$.
The number of paths that pass $m_1$ times through node $1$, $m_2$ times through node $2$, etc., seems to be given by
$$\sum_{\vec{t}\in \mathbb{N}^n } \frac{(t_1 + t_2 + \cdots + t_n)!}{t_1! t_2! \cdots t_n!} \prod_{i=1}^n (-1)^{m_i - t_i} { m_i -1 \choose t_i-1},$$
How would you tackle this sum, perhaps with some useful identity?
$\textit{Edited 13/09}$ (added motivation before formula).
I assume that all of $m_1, m_2, \ldots, m_n$ are positive; otherwise, the sum is divergent.
In the $n = 1$ case, the sum equals $0$ if $m_1 > 1$, and equals $1$ if $m_1 = 1$.
In the $n = 2$ case, the sum equals:
$2$ if $m_1 = m_2$;
$1$ if $\left|m_1-m_2\right| = 1$;
$0$ otherwise.
The proof is not too difficult; essentially, you need to rewrite $\dfrac{\left(t_1+t_2\right)!}{t_1!t_2!}$ as $\sum\limits_{a\in \mathbb{N}} \dbinom{t_1}{a}\dbinom{t_2}{a}$ using the Vandermonde convolution, and then your sum becomes
$\sum\limits_{a \in \mathbb{N}} \underbrace{\left(\sum\limits_{t_1 \in \mathbb{N}} \dbinom{t_1}{a} \left(-1\right)^{m_1-t_1} \dbinom{m_1-1}{t_1-1}\right)}_{= \left(-1\right)^{m_1+a} \dbinom{m_1-a-2}{m_1-a}} \underbrace{\left(\sum\limits_{t_2 \in \mathbb{N}} \dbinom{t_2}{a} \left(-1\right)^{m_2-t_2} \dbinom{m_2-1}{t_2-1}\right)}_{= \left(-1\right)^{m_2+a} \dbinom{m_2-a-2}{m_2-a}}$; but $\dbinom{u-2}{u}$ is $1$ if $u=0$, is $-1$ if $u=1$, and is $0$ if $u \geq 2$, whence the claim follows with some casework. I can go into details in the unlikely case that the $n=2$ case proves to be the interesting one.
I don't have a good guess for $n\geq 3$. Big numbers certainly do appear in those cases. Here is some stupid Sage code:
The result is:
Maybe relevant: http://oeis.org/A095660