Show that: $\Theta(n\log n)\cup o(n\log n)\neq O(n\log n)$
I tried to start this in many ways but I don't really know how... intuitively isn't $\Theta \cup o = o$? So that would mean that I would have to just show that $o(n \log n) \neq O(n \log n) $ Which would be easier I think. But I don't know how to go about this formally..
Consider the sequence
$$a_n=\begin{cases} n\log n & \text{if } n \text{ is even} \\ 0 & \text{if }n \text{ is odd} \end{cases}$$
This sequence is in $O(n\log n)$ because
$$a_n \le n\log n\quad \forall n$$
but not in $\Theta(n\log n)\cup o(n\log n)$, because
it is not in $o(n\log n)$ because for $k=0.5$, $\nexists n_0$ such that $a_n < k \cdot n\log n \quad \forall n\ge n_0$.
it is not in $\Theta(n\log n)$ because $\nexists k_1>0, n_0>0$ such that $a_n \ge k_1\cdot n\log n\quad \forall n\ge n_0$.
Therefore, the two sets are not equal.