Given two functions $f(k)=2k+log_2(k+1)$ and $f'(k)=k+log_2(k)$, I am wondering how far $f(k)$ is to $f'(k)$ in asymptotic notation. If $k$ is large then $log_2(k)\approx log_2(k+1)$ and $f(k)=f'(k)+k$. Does that mean $f(k)$ is $O(k)$ far from $f'(k)$ ?
I assume $f(x)$ being $O(k)$ far from $f'(k)$ means $f'(k)$ should be multiplied (not summed) by $k$. IF that's true then is it $O(1)$?