The same sequence may be defined in three ways: 1) f(x) = 6x + 5 for x = {1, 2, 3, ...}, 2) a1 = 11 and an + 1 = an + 6 for n = {1, 2, 3, ...} and 3) an =11 + 6(n − 1) for n = {1, 2, 3, ...}.

They are all supposed to generate the same values, but one version may contain an error. If one version contains an error, identify the one with the error and fix it.
Responses
A None of these have errors, they all generate the same sequence.None of these have errors, they all generate the same sequence.
B f(x) = 6x + 5 for x = {1, 2, 3, ...}
It should say f(x) = 5x + 6 for x = {1, 2, 3, ...}.f(x) = 6x + 5 for x = {1, 2, 3, ...} It should say f(x) = 5x + 6 for x = {1, 2, 3, ...}.
C an = 11 + 6(n − 1) for n = {1, 2, 3, ...}
It should say an = 11 + 5(n − 1) for n = {1, 2, 3, ...}.a n = 11 + 6(n − 1) for n = {1, 2, 3, ...} It should say a n = 11 + 5(n − 1) for n = {1, 2, 3, ...}.
D a1 = 11 and an + 1 = an + 6 for n = {1, 2, 3, ...}
It should say a1 = 11 and an + 1 = an + 5 for n = {1, 2, 3, ...}.

D a1 = 11 and an + 1 = an + 5 for n = {1, 2, 3, ...}