===================================================
Explanation:
The idea is that for any term, we add on the common difference d to get the next term. For example, the sequence {3, 7, 11, 15, 19, 23, ...} has us add on 4 each time so d = 4 in this case.
3+4 = 7
7+4 = 11
11+4 = 15
and so on. The nth term is represented by the notation[tex]a_n[/tex] while the term just before the nth term is written as [tex]a_{n-1}[/tex]
So adding d onto the term just before the nth term gets us the nth term which is how we end up with [tex]a_n = a_{n-1}+d[/tex]
This is the recursive form of the arithmetic sequence. The closed form is written as [tex]a_n = a_1 + d(n-1)[/tex]