What about functions that play off each other?
Let f(0)=2, g(0)=2, and
f(n)= g(n-1)^2 if n is odd
f(n)= f(n-1)+1 if n is even
g(n)=g(n-1)+1 if n is odd
g(n)=f(n-1)^2 if n is even
so,
f(1)=4, g(1)=3
f(2)=5, g(2)=16
f(3)=256, g(3)=17
f(4)=257, g(4)=65536
...
so they are both increasing functions:
Now if one function is multiplied by any constant, like 10
f(1)=40, g(1)=3
f(2)=410, g(2)=1600
f(3)=25600000, g(3)=1601
...they continue to oscillate. Thus they are not asymptotically comparable.