I have an exercise where I, using induction, have to prove the following:
\begin{equation*} 1 + 4 + 7 + \ldots + (3n-2) = 2n(3n-1). \end{equation*}
I immediately got stuck on the base case with $n=1$ because the following should be true: $1 = 2 \cdot 1 \cdot (3 \cdot 1 - 1) = 2 \cdot 2$ which is clearly not the case. However the exercise says to prove the given relation, not to check if it is correct, which is why I have elected to make this post to see if I am missing any obvious thing.
First of all, the claim is wrong. A direct proof shows that.
The sequence $\{1,4,7,\ldots,3n-2\}$ is an arithmetic progression with common difference $3$ and there are $n$ number of terms in it. So, the sum of all the terms is:
$$\begin{align}S =1+4+7+\ldots+(3n-2)&=1+(1+3)+(1+6)+\ldots+(1+3(n-1))&\\ &=\sum_{i=1}^n(1)+\sum_{i=1}^{n-1}(3i)\\&=n+3\cdot\frac{(n-1)n}{2}=\frac{3n^2-n}{2}=\frac{n(3n-1)}{2}\neq 2n(3n-1)\end{align}$$
The "$\neq$" follows in general. Now, if you were to prove the corrected claim using induction, here's a hint for the inductive step:
$$\begin{align}S_{n+1} & =1+4+7+\ldots+(3n-2)+(3n+1)\\ &=S_n+(3n+1)\\ &=\frac{n(3n-1)}{2}+(3n+1)\tag{by I.H.}\\&=\frac{3n^2-n+6n+2}{2}\\&=\frac{3n^2+5n+2}{2}\\&=\frac{(n+1)(3n+2)}{2}\\ & =\ldots\end{align}$$