Define start and stop for recursive formula

42 Views Asked by At

A recursive formula like a_{n} = a_{n-1}+4, how is it specified where to start and stop? In any computer language, I'd write something for(uint i =0; i<stop; i++) {}. With a calculator for example, how would "get result for a_{5}" be stated, or, just how is it written in standard math notation?