I think I have a solution so this sequence in:
$a_n = \lfloor \frac{n-1}{2}\rfloor + n$.
I have been plugging numbers in and so far it works. However, there must be a better way to check if this indeed a solution.
My questions are:
1) Is this a solution, and
2) What is the best method for checking answers like this?
There are at least two ways to do this. Firstly, because you are looking at divisibility, you can generally split the proof into cases. The second option you have is to use induction since it seems you are trying to prove this for $n\ge 1$ (or some other integer).
The first way is more general in that you can show that $a_n$ is not divisible by $3$ for any integer $n$. We will split into the two cases $n$ even or $n$ odd. If $n$ is odd then $n=2k+1$ for some $k\in \mathbb{Z}$ so:
$$ \left\lfloor \frac{n-1}{2} \right\rfloor +n=\left\lfloor \frac{2k+1-1}{2} \right\rfloor+2k+1=\left\lfloor k \right\rfloor+2k+1=3k+1 $$ and $3k+1$ is not divisible by $3$ so the result works for all odd integers. If $n$ is even then $n=2k$ for some $k\in \mathbb{Z}$ and:
$$ \left\lfloor \frac{n-1}{2} \right\rfloor +n=\left\lfloor \frac{2k-1}{2} \right\rfloor+2k=\left\lfloor k-\frac{1}{2} \right\rfloor+2k=k-1+2k=3k-1 $$ and $3k-1$ is not divisible by $3$ so the result holds for all even integers too.