Answer: The sequence generated is 10, 8, 6, 4, 2, ...
This sequence is arithmetic with starting term 10 and common difference -2. This means we add -2 to each term to get the next one (same as subtracting 2 from each term). This common difference is directly connected to the -2 from the recursive rule f(n+1) = f(n)-2
Whatever the nth term f(n) is, we subtract off 2 to get f(n)-2 to get the f(n+1) term, which is right after the nth term.