The famous Fibonacci sequence is defined by the recurrence relation $$F_n=F_{n-1}+F_{n-2}$$ where $F_n$ is the $n^{\text{th}}$ term of the sequence. What if instead of adding the previous two terms, we multiply them? So the recurrence relation becomes $$F_n^*=F_{n-1}^*×F_{n-2}^*$$ where $F_n^*$ is the $n^{\text{th}}$ term of the sequence. The usual initial terms $0$ and $1$ gives a boring sequence, but other initial terms like $2$ and $3$ gives something better.
Now what kind of properties would this sequence have? When I tried googling it, I had only found this math paper and this MSE post. Is there any other information about this?