Explanation:
well, then you understand the pattern. and it is really simple.
a1 = 5
a2 = a1 + 10 = 5 + 10 = 15
a3 = a2 + 10 = a1 + 10 + 10 = 5 + 20 = 25
a4 = a3 + 10 = a2 + 10 + 10 = a1 + 10 + 10 + 10 = 5 + 30 = 35
...
do you see how that works ?
an = an-1 + 10 = a1 + (n-1)×10 = 5 + (n-1)×10
it works in general the same way for any constantly added numbers d :
an = a1 + (n-1)×d
so, for the requested a30 :
a30 = a29 + 10 = a1 + (30-1)×10 = 5 + 29×10 = 295