Question 1172132
<pre>
Instead of doing your problem for you, I'll do one that is done exactly the
same way step by step.  I'll do this one instead:
</pre>What is the two hundredth term of the sequence with a sub one equals 333
and d equals -4?<pre>
{{{matrix(1,3,

a[n],""="",a[1]+ (n-1)*d)}}}

Plug in n = 200, a<sub>1</sub> = 333, d = -4

{{{matrix(1,3,

a[200],""="",333+ (200-1)*(-4))}}}

{{{matrix(1,3,

a[200],""="",333+ (199)*(-4))}}}

{{{matrix(1,3,

a[200],""="",333+ (-796))}}}

{{{matrix(1,3,

a[200],""="",333-796)}}}

{{{matrix(1,3,

a[200],""="",-463)}}} 

Now do yours the exact same way.

Edwin</pre>