Question 745670
31,26,21,16,11,...

tells us:

d=31-26=26-21=21-16=16-11=5


a1=31

therefore:

{{{
a[n]=a[1]+(n-1)d
}}}


becomes


{{{
a[n]=31+5(n-1)
}}}


:)