Suppose I have a directed graph with cycles, not fully connected. And say I start at some vertex $s$ and I wish to determine the probability of a path $s \to u \to t$ under some random walk, where $s \to u$ means that I start at $s$, and arrive at $u$ through an arbitrarily long path, but without hitting $s$ first, how would I express this?
I thought about breaking it down to $s \to u, u \to t$, where $s \to u$ is computed using personalized page rank. But this does not make sense since it does not preclude the possibility of a path $s \to \ldots s \ldots \to u$.