For the binominal random walk with step sizes: $S_i = \begin{cases} &+1 &\text{probability} &p, \\ &-1 &\text{probability} &q=1-p \end{cases}$
Let $T_n = \sum_{i=1}^mS_i$ be the displacement after a fixed, not random, number of steps $n$.
then the probability distribution: $P(T_n=t)$ will approach a normal distribution when $n$ is large.
My question is, what kind of random walk (maybe with different step sizes, different probability) can generate a lognormal distribution in the limit ?
$T_0 = 1, T_{n+1} = \begin{cases} &2 * T_n &\text{probability} &p, \\ &1/2 * T_n &\text{probability} &q=1-p \end{cases}$
additive version: $S_0 = 1, S_{n+1} = \begin{cases} &T_n &\text{probability} &p, \\ &-1/2 * T_n &\text{probability} &q=1-p \end{cases}$
main challenge is that you have to adjust step size $S_n$ to place where you are now $T_n$, here I used factor $2$ but you can tweek this parameter to get desired result
this version should produce skewed displacement $T_0 = 1, S_{n} = \begin{cases} &2/n &\text{probability} &p, \\ &-1/n &\text{probability} &q=1-p \end{cases}$