0

I am trying to find a formula to express the nth term, the pattern is as follows:

n = 4, 5, 6, 7

its corresponding values are as follows:

6, 10, 15, 21

I know this is not worded very well, if anyone can help it would be most appreciated

1 Answers1

0

The pattern is as follows: $$a_{n-3}=\dfrac{n(n-1)}{2},a_0=6$$ Or alternately, $$a_{n-3}=a_{n-4}+(n-3),a_4=6$$

  • Thank you, the n(n-1)/2 is what I was looking for. Is there a name for a topic I can look up in order to help figure these out? I would never be able to see it on my own – user3371750 May 07 '14 at 03:40
  • @user3371750 I don't know - I just used my logic. :-) –  May 07 '14 at 03:41
  • @user3371750 If this answer is what you needed click the green check mark to select this answer as the correct one, and/or vote it up if you like it. –  May 07 '14 at 03:42