I have the following recursive formula the for a sequence:
\begin{cases}V_{1} = 1\\V_{n} = V_{n-1} + n & n > 1\end{cases}
This sequence increases by $n$ for each term increase. Now I need to find if $3003$ is a value of this sequence. I managed to solve the problem by finding an explicit formula for the sequence and solved in terms of $n$. Like this:
\begin{align} 3003 = \dfrac {\left( n-1\right) n} {2}+n \end{align}
which led to
\begin{align} n = 77 &\vee n = -78 \end{align}
So since there's no negative terms in a sequence I concluded that when $n=77$, $3003$ is the value of the sequence.
What I would like to know is if there is some other simpler/direct way to solve this.
I realized that the value of the nth term is the sum of all terms below $n$, including it $(n, n-1, n-2,\dots,0)$ and came up with that explicit formula but it isn't obvious.