The MathResource
recursive definition
or inductive definition, n. the definition of a sequence by specifying its first term (by the base clause) and an algorithm (the recursion clause) by which to derive any term from its predecessor; for example, an is defined by
a0 = 1, ak+1 = a × ak;
and n! is defined by
0! = 1, n! = n(n - 1)!