I must only use the definition of Big O:
$f(n)$ is $O(g(n))$ iff there are constants $C > 0$ and $N > 0$ such that for all $n > N$, $f(n) \leq Cg(n)$.
I know how to do this using limits, but that is not allowed for this problem--we must come up with a constant of sorts. I've tried making $C=log(b)$, but that really doesn't get me anywhere.
Since $$n+k\leq n+n=2n\leq n\cdot n= n^2$$ for all integers $n\geq \max\{k,2\}$, it follows that $$ \log(n+k)\leq \log(n^2)=2\log n$$ for all $n\geq \max\{k,2\}$.