3,8,15,24,35,...This infinite sequence is a quadratic sequence. The nth term rule for the sequence is an=n(n+2), where n>0. The recursive formula is an=an−1+2n+1, where n>1 and a1=3.
3+58+2+715+2+924+2+1135
Explicit Formula
Since there are 2 rows of differences, the formula for the sequence can be written as a polynomial with degree 2, where n is the term number and (x0,x1,x2) are the coefficients: an=n2x2+nx1+x0
Using the first 3 terms in the sequence, create and solve the system of equations for (x0,x1,x2): 3815=12x2+1x1+x0=22x2+2x1+x0=32x2+3x1+x0⇒x0+x1+x2=3x0+2x1+4x2=8x0+3x1+9x2=15 ⇒(x0,x1,x2)=(0, 2, 1)
The nth term rule is:an=n2x2+nx1+x0=n2(1)+n(2)+(0)=n(n+2)
Recursive Formula
Since there are 2 rows of differences, the formula for the sequence can be written as the sum of an−1 and polynomial with degree 1, where n is the term number and (x0,x1) are the coefficients: an=an−1+nx1+x0
Using the first 3 terms in the sequence, create and solve the system of equations for (x0,x1): 815=3+2x1+x0=8+3x1+x0⇒x0+2x1=5x0+3x1=7 ⇒(x0,x1)=(1, 2)
The nth term rule is:an=an−1+nx1+x0=an−1+n(2)+(1)=an−1+2n+1