by tmmyc Thu Mar 06, 2008 1:56 pm
To determine the formula, let's try with easier examples first.
Example with 2 numbers:
6, 9
Formula to get 9:
9 = 6 + 3
9 = 6 + (1*3)
The '1' term in the parenthesis above is actually 1 less than the number of terms (2-1=1). You will see why this is important in a second.
Thus,
9 = 6 + [(2-1)*3]
Let's try another example.
Example with 3 numbers:
6, 9, 12
Formula to get 12:
12 = 6 + 3 + 3
12 = 6 + (2*3)
The '2' term in parenthesis above is also 1 less than the number of terms (3-1=2).
Thus,
9 = 6 + [(3-1)*3]
Seems like a pattern is forming.
If you're still unsure, try another example.
Example with 4 numbers:
6, 9, 12, 15
Formula to get 15:
15 = 6 + 3 + 3 + 3
15 = 6 + (3*3)
The '3' term in parenthesis is again 1 less than the number of terms (4-1=3).
Thus,
9 = 6 + [(4-1)*3]
I think the pattern is obvious now.
Try to generalize the formula.
Example with n numbers:
nth number = 6 + [(n-1)*3]
Hence with 160 numbers:
160th number = 6 + [(160-1)*3]
160th number = 6 + (159*3)
Sorry for the lengthy explanation. Hope it helps.