Consider a one-dimensional random walk whose steps are $+2$ and $-1$ with probabilities $p$ and $1-p$ respectively, starting from $0$ and in the interval {$-n$, $n$}. The walk ends at $-n$ or $n$ or $n+1$. Let $m$ be the number of integers "jumped" during the walk.
Is there a limit for the ratio $\frac{m}{2n+1}$ for $n \rightarrow \infty$?
Three examples to clarify:
1) n=15 p= 1/2 Steps = {-1, 2, -1, 2, -1, 2, -1, 2, -1, -1, 2, 2, -1, -1, 2, 2, 2, 2, -1, \ -1, 2, -1, -1, 2, -1, 2, -1, -1, 2, 2}
Positions = {0, -1, 1, 0, 2, 1, 3, 2, 4, 3, 2, 4, 6, 5, 4, 6, 8, 10, 12, 11, 10, \ 12, 11, 10, 12, 11, 13, 12, 11, 13, 15}
Missed (jumped) positions = {-15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, 7, 9, 14}
m = 17; r = m/(2 n +1) = 0.548387
2) n= 15 p=1/2 Steps = {2, 2, 2, 2, -1, -1, 2, 2, 2, -1, -1, -1, -1, 2, 2, -1, -1, -1, 2, \ -1, 2, -1, -1, 2, 2, 2}
Positions = {0, 2, 4, 6, 8, 7, 6, 8, 10, 12, 11, 10, 9, 8, 10, 12, 11, 10, 9, 11, \ 10, 12, 11, 10, 12, 14, 16}
Missed positions = {-15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 1, 3, 5, 13, 15}
m =20; r = m/(2 n +1) = 0.645161
3) n=20 p=1/2 Steps = {-1, 2, -1, 2, 2, 2, -1, -1, -1, -1, -1, -1, 2, -1, 2, 2, 2, -1, 2, \ -1, 2, -1, -1, -1, -1, -1, 2, -1, -1, -1, 2, -1, -1, -1, 2, -1, 2, \ -1, 2, 2, -1, -1, -1, -1, -1, -1, -1, 2, 2, -1, -1, 2, 2, -1, 2, -1, \ 2, 2, 2, -1, 2, 2, 2, 2}
Positions = {0, -1, 1, 0, 2, 4, 6, 5, 4, 3, 2, 1, 0, 2, 1, 3, 5, 7, 6, 8, 7, 9, \ 8, 7, 6, 5, 4, 6, 5, 4, 3, 5, 4, 3, 2, 4, 3, 5, 4, 6, 8, 7, 6, 5, 4, \ 3, 2, 1, 3, 5, 4, 3, 5, 7, 6, 8, 7, 9, 11, 13, 12, 14, 16, 18, 20}
Missed positions = {-20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, \ -6, -5, -4, -3, -2, 10, 15, 17, 19}
m =20; r = m/(2 n +1) = 0.560976
A simulation with the range {-2000,2000}, iterated 1000 times provides r as 0.572958.
The question is: Is there a limit for n -> Infinity based on: (n, p, base steps {-1,2}) ?
I am not entirely sure what you mean by integers "jumped", so I will provide two different answers:
If by integers jumped you mean the amount of times you jump an integer (i.e., move forward) during the random walk, then irrespective of $n$ (as long as it is greater than or equal to 2), there is the possible scenario of an unbounded number of forward moves: just think of the repeating sequence [backward step, forward step, backward step] repeated over and over. Therefore, even with $n = 2$ you can have an arbitrarily large ratio $m/(2n+1)$. There is no limit for the ratio as $n\rightarrow \infty$.
If on the other hand you mean the amount of integers which remain unstepped in the inverval, then it is easy to determine that the maximum amount of unstepped integers is $n/2 + n = 3n/2$, which is obtained (not exclusively) by the sequence that contains only forward steps. Any backward step executed results at best in the same amount of unstepped integers in the walk (if landing on an unstepped integer and followed by another backward step also landing on an unstepped integer), or in the possible decrease of unstepped integers (if landing on an unstepped integer or if followed by a forward step landing on a previously unstepped integer). Given this value, if follows that the ratio $m/(2n+1) = (3n/2)/(2n+1) = 3n/(4n+2)$ converges to $3/4$ as n approaches infinity.