Respuesta :

The first five terms of the sequence are 1/5, 2/5, 3/5,4/5, 1

Recursive functions

Recursive functions are functions that is used to determine the next term of a given sequence giving the common difference.

Given the recursive function shown below;

f(1) = 1/5

f(n) = f(n-1) + 1/5

For the second term;

f(2) = f(1) + 1/5

f(2) = 1/5 + 1/5

f(2) = 2/5

For the third term;

f(3) = f(2) + 1/5

f(3) = 2/5 + 1/5

f(3) = 3/5

For the fourth term;

f(4) = f(3) + 1/5

f(4) = 3/5 + 1/5

f(4) = 4/5

For the fifth term;

f(5) = f(4) + 1/5

f(5) = 4/5 + 1/5

f(5) = 5/5 = 1

Hence the first five terms of the sequence are 1/5, 2/5, 3/5,4/5, 1

learn more on recursive function here: https://brainly.com/question/11316313