How do you find the explicit formula for the following sequence 0, 1, 3, 6, 10 ...?

2 Answers
Feb 7, 2016

For #n = 1#, #a_1 = 0#
For #n > 1#, #a_n = a_1 + sum x# where #x in NN# and #x < n#

Explanation:

Express the desired element in terms of the preceding element

#a_1 = 0#

#a_2 = 1 = a_1 + 1#

#a_3 = 3 = a_2 + 2#

#a_4 = 6 = a_3 + 3#

#a_5 = 10 = a_4 + 4#


Based from the pattern, we can say that

#a_n = a_(n - 1) + (n - 1)#

If we keep on expanding the formula, we have

#=> a_n= (a_(n - 2) + (n - 2)) + (n - 1)#

#=> a_n= ((a_(n - 3) + (n - 3))+ (n - 2)) + (n - 1)#

#=> a_n= (((a_(n - 4) + (n - 4))+ (n - 3))+ (n - 2)) + (n - 1)#

Eventually we will have

#=> a_n = a_1 + 1 + 2 + 3 + ... + (n - 3) + (n - 2) + (n - 1)#

Feb 14, 2016

Examine sequences of differences to derive an explicit formula:

#a_n = 1/2n(n-1)#

Explanation:

A finite sequence does not determine a unique formula, but in this particular case there are enough terms to see an intended pattern.

We can derive an explicit formula by examining sequences of differences.

The given sequence is:

#color(blue)(0), 1, 3, 6, 10#

Write down the sequence of differences of that sequence:

#color(blue)(1), 2, 3, 4#

Write down the sequence of differences of the sequence:

#color(blue)(1), 1, 1#

Having arrived at a constant sequence, we can now use the initial term of each of these sequences as coefficients to construct an explicit polynomial formula:

#a_n = color(blue)(0)/(0!) + color(blue)(1)/(1!)(n-1) + color(blue)(1)/(2!)(n-1)(n-2)#

#=n-1+1/2n^2-3/2n+1#

#=1/2n^2-1/2n#

#=1/2n(n-1)#