I have to prove that for $a \in N, c > 0$ (constants), this statement holds:
$\log_a(n + c) \in O(\log_a(n))$
So if I use the definition, the following should hold:
$\log_a(n + c) \leq d\log_a(n) = \log_a (n^d), \forall n \geq n_0, d > 0$
I have to find $n_0, d$ now
$n + c \leq n^d$
But how can I express $d$ so it depends only on $c$? How to continue from here? Thanks for any help!