All questions
Question 1
Consider the recursively defined sequence b0=5, b1=2, and bn=bn−1+bn−2 for n≥2. Which statement about this sequence as a function is most accurate?
- The function requires exactly one previous term to determine each subsequent value
- The function requires exactly two previous terms to determine each subsequent value (correct answer)
- The function can be expressed as f(n)=5n+2 for all valid inputs
- The function has an undefined value at n=0 and n=1
Explanation: This is a Fibonacci-type sequence where each term depends on the sum of the two preceding terms, so exactly two previous terms are needed for n≥2. Choice A is wrong because one term isn't sufficient. Choice C is wrong because this recursive relationship doesn't produce a linear function. Choice D is wrong because b₀=5 and b₁=2 are explicitly defined initial conditions.
Question 2
A sequence is a function whose domain is a subset of the integers, so it is defined only at discrete inputs. Which set is the most appropriate domain for a sequence written as a1,a2,a3,…?
- All rational numbers Q
- All integers Z
- All real numbers R
- All positive integers {1,2,3,…} (correct answer)
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. A sequence is a function whose inputs are integers (often starting at 1 or 0) and whose outputs are the sequence terms: f(1) = first term, f(2) = second term, etc. Unlike continuous functions that have values for all real numbers, sequences have values only at integer positions. If you graphed a sequence, you'd see separate dots (like (1, a₁), (2, a₂), (3, a₃)), not a connected curve. This discrete nature makes sequences fundamentally different from functions like f(x) = x²! For a sequence like a₁, a₂, a₃, ..., the most appropriate domain is the positive integers {1,2,3,...}, as it matches the indexing starting from 1. Choice C correctly defines the integer domain as positive integers. A distractor like A (all reals) fails because sequences are discrete, not defined for non-integers—great job spotting that! Remember, sequences aren't continuous; their domain restricts to integers for that dotted graph effect. Keep exploring, and these concepts will click!
Question 3
The sequence 1,3,9,27,81,… is a function with domain n∈{1,2,3,…}. Which recursive definition matches this sequence?
- a1=3, an+1=3an
- a1=1, an+1=an+3
- a1=1, an+1=3an (correct answer)
- a1=1, an+1=an3
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. A sequence is a function whose inputs are integers (often starting at 1 or 0) and whose outputs are the sequence terms: a₁ = first term, a₂ = second term, etc. This geometric sequence 1, 3, 9, 27, 81,... multiplies by 3 each time, so the recursive rule should reflect that constant ratio. Checking each option: For B, a₁ = 1, a₂ = 31 = 3, a₃ = 33 = 9, a₄ = 27, a₅ = 81, matching perfectly. Choice B correctly defines with initial value and rule as a₁=1, a_{n+1}=3a_n. Option A fails because it adds 3 each time, giving 1,4,7,10,... which is arithmetic, not geometric—remember to distinguish between adding a constant versus multiplying by one. Recursive vs explicit: recursive definitions are often simpler to state ('multiply by 3') but require step-by-step for later terms, while an explicit formula like a_n = 3^{n-1} lets you compute directly, like a_5 = 3^4 = 81 instantly.
Question 4
A sequence can be viewed as a discrete function f whose domain is the positive integers n∈{1,2,3,…}. For the Fibonacci sequence defined by f(1)=f(2)=1 and f(n)=f(n−1)+f(n−2) for n≥3, what is f(7)?
- 11
- 21
- 8
- 13 (correct answer)
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. A sequence is a function whose inputs are integers (often starting at 1 or 0) and whose outputs are the sequence terms: f(1) = first term, f(2) = second term, etc. Unlike continuous functions that have values for all real numbers, sequences have values only at integer positions. If you graphed a sequence, you'd see separate dots (like (1, a₁), (2, a₂), (3, a₃)), not a connected curve. This discrete nature makes sequences fundamentally different from functions like f(x) = x²! Recursive definitions specify how to get each term from previous term(s): the Fibonacci sequence is the classic example with f(1) = 1, f(2) = 1 and f(n) = f(n-1) + f(n-2) for n ≥ 3, meaning each term equals the sum of the two before it. To find f(7), you can't jump there directly—you must calculate f(3) = f(2) + f(1) = 1 + 1 = 2, then f(4) = 2 + 1 = 3, then f(5) = 3 + 2 = 5, f(6) = 5 + 3 = 8, finally f(7) = 8 + 5 = 13. Choice C correctly evaluates recursively as 13. A common distractor like D (21) might come from miscounting terms or starting from f(0), but remember to use the given initial values precisely. Evaluating recursive sequences systematically: (1) Write down the initial value(s) clearly: f(1) = 1, f(2) = 1, (2) Set up a table or list: n = 1, 2, 3, ... down one side, (3) Apply the recursive rule one step at a time: for Fibonacci, f(3) = f(2) + f(1), so look up f(2) and f(1) from what you've already calculated, add them, write the result, (4) Continue until you reach the desired term. Don't skip steps—recursion is sequential by nature! Keep practicing, and you'll master these quickly!
Question 5
A sequence can be viewed as a function whose domain is a subset of the integers. For the Fibonacci sequence defined on n∈{1,2,3,…} by f(1)=1, f(2)=1, and f(n)=f(n−1)+f(n−2) for n≥3, find f(8).
- 13
- 34
- 21 (correct answer)
- 8
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. Recursive definitions specify how to get each term from previous term(s): the Fibonacci sequence is the classic example with f(1)=1, f(2)=1 and f(n)=f(n−1)+f(n−2), meaning each term equals the sum of the two before it. To find f(8), start with f(1)=1, f(2)=1, then f(3)=2, f(4)=3, f(5)=5, f(6)=8, f(7)=13, and f(8)=21—building step by step ensures accuracy. Choice C correctly evaluates recursively as 21. A common distractor like choice A (13) might come from stopping at f(7) instead of f(8), so always verify the term number. Evaluating recursive sequences systematically: (1) Write down the initial value(s) clearly: f(1)=1, f(2)=1, (2) Set up a table or list: n=1,2,3,..., (3) Apply the recursive rule one step at a time: for Fibonacci, add the previous two, (4) Continue until you reach the desired term—don't skip steps, recursion is sequential by nature! Recursive vs explicit: recursive definitions are often simpler to state but require calculating all prior terms, while explicit formulas allow direct computation, though for Fibonacci, the explicit form (Binet's) is more complex—keep practicing both! Question 6
Two students define sequences differently. Student A: xn=2n+1 for n≥1. Student B: y1=3 and yn=yn−1+2 for n≥2. Which statement about these sequences as functions is most accurate?
- Only Student A's sequence represents a function since it has an explicit formula
- Student B's sequence is not a function because it's defined recursively rather than explicitly
- Both sequences represent the same function with domain of positive integers (correct answer)
- The sequences represent different functions because they use different definition methods
Explanation: Both sequences generate the same values: 3, 5, 7, 9, 11, ... Student A uses explicit formula x_n = 2n+1. Student B uses recursion but y_n = 3+2(n-1) = 2n+1. They represent the same function. Choice A is wrong because recursive definitions also represent functions. Choice B is wrong because recursively defined sequences are functions. Choice D is wrong because the same function can have multiple representations.
Question 7
A population model is defined by P0=100 and Pn=1.2Pn−1−5 for n≥1. If we interpret this as a function g(n)=Pn, what is g(3)−g(1)?
- 31.6 (correct answer)
- 33.6
- 36.8
- 38.8
Explanation: First calculate the terms: P₁ = 1.2(100) - 5 = 115, P₂ = 1.2(115) - 5 = 133, P₃ = 1.2(133) - 5 = 154.6. So g(3) - g(1) = 154.6 - 115 = 31.6. Choice B results from calculation errors in the recursive steps. Choice C comes from incorrectly computing P₃ - P₀. Choice D results from sign errors in the recursive formula.
Question 8
Two sequences are defined as follows: Sequence A: u1=4, un=un−1+3 for n≥2. Sequence B: v1=4, vn=3vn−1 for n≥2. When comparing these sequences as functions, which statement is true?
- Both sequences can be written as explicit linear functions of n
- Sequence A grows exponentially while Sequence B grows linearly
- Sequence A can be written as u(n)=3n+1 and Sequence B grows exponentially (correct answer)
- Both sequences have the same rate of growth for large values of n
Explanation: Sequence A is arithmetic: u(n) = 4 + 3(n-1) = 3n + 1, which is linear. Sequence B is geometric: v(n) = 4·3^(n-1), which is exponential. Choice A is wrong because B is exponential, not linear. Choice B reverses the growth types. Choice D is wrong because exponential growth eventually dominates linear growth.
Question 9
Consider the sequence t1=8, t2=12, and tn=2tn−1+tn−2 for n≥3. If this represents a function h(n)=tn, which property best describes the long-term behavior?
- The function values increase without bound as n approaches infinity
- The function values approach a finite limit as n approaches infinity (correct answer)
- The function values oscillate between 8 and 12 for all n≥3
- The function values decrease without bound as n approaches infinity
Explanation: Since each term is the average of the two preceding terms, the sequence converges to the average of the initial terms: (8+12)/2 = 10. This is a convergent sequence. Choice A is wrong because averaging doesn't create unbounded growth. Choice C is wrong because the values don't oscillate but converge. Choice D is wrong because the terms approach 10, not negative infinity.
Question 10
A sequence is defined recursively where c1=5 and cn=(−1)n⋅cn−1+2 for n≥2. If we consider the function f(n)=cn, what is the relationship between f(4) and f(6)?
- f(4)=f(6)−4
- f(4)=−f(6)
- f(4)=f(6)+4
- f(4)=f(6) (correct answer)
Explanation: When you encounter a recursive sequence, the key is to calculate the first several terms systematically to identify any patterns. This sequence uses both the previous term and a sign that alternates based on whether n is even or odd.
Let's calculate the terms step by step using cn=(−1)n⋅cn−1+2:
c1=5 (given)
c2=(−1)2⋅c1+2=1⋅5+2=7
c3=(−1)3⋅c2+2=−1⋅7+2=−5
c4=(−1)4⋅c3+2=1⋅(−5)+2=−3
c5=(−1)5⋅c4+2=−1⋅(−3)+2=5
c6=(−1)6⋅c5+2=1⋅5+2=7
Notice that c5=c1=5 and c6=c2=7. The sequence repeats every 4 terms! Therefore f(4)=c4=−3 and f(6)=c6=−3, making choice D correct.
Choice A suggests f(4)=f(6)−4, which would mean −3=−3−4=−7, which is false. Choice B claims f(4)=−f(6), meaning −3=−(−3)=3, also incorrect. Choice C proposes f(4)=f(6)+4, giving us −3=−3+4=1, which doesn't work either.
Study tip: With recursive sequences involving alternating signs, always calculate enough terms to spot the pattern. Many recursive sequences are periodic, so look for when values start repeating. Question 11
A sequence can be viewed as a discrete function whose domain is the positive integers. For the Fibonacci sequence defined by f(1)=f(2)=1 and f(n)=f(n−1)+f(n−2) for n≥3, find f(7).
- 21
- 8
- 13 (correct answer)
- 11
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. A sequence is a function whose inputs are integers (often starting at 1 or 0) and whose outputs are the sequence terms: f(1) = first term, f(2) = second term, etc. Unlike continuous functions that have values for all real numbers, sequences have values only at integer positions. If you graphed a sequence, you'd see separate dots (like (1, a₁), (2, a₂), (3, a₃)), not a connected curve. This discrete nature makes sequences fundamentally different from functions like f(x) = x²! Recursive definitions specify how to get each term from previous term(s): the Fibonacci sequence is the classic example with f(1) = 1, f(2) = 1 and f(n) = f(n-1) + f(n-2) for n ≥ 3, meaning each term equals the sum of the two before it. To find f(7), you can't jump there directly—you must calculate f(3) = f(2) + f(1) = 1 + 1 = 2, then f(4) = 2 + 1 = 3, f(5) = 3 + 2 = 5, f(6) = 5 + 3 = 8, finally f(7) = 8 + 5 = 13. Choice C correctly evaluates recursively as 13. A common distractor like D (21) might come from mistakenly adding more terms or skipping steps, but remember to build sequentially from the initials. Evaluating recursive sequences systematically: (1) Write down the initial value(s) clearly: f(1) = 1, f(2) = 1, (2) Set up a table or list: n = 1, 2, 3, ... down one side, (3) Apply the recursive rule one step at a time: for Fibonacci, f(3) = f(2) + f(1), so look up f(2) and f(1) from what you've already calculated, add them, write the result, (4) Continue until you reach the desired term. Don't skip steps—recursion is sequential by nature! Recursive vs explicit: recursive definitions are often simpler to state ('add the previous two terms') but harder to evaluate for large n (must calculate all terms before it). Explicit formulas are harder to find ('aₙ = formula just in n') but let you jump to any term: a₁₀₀ directly without finding a₁ through a₉₉. For Fibonacci, there IS an explicit formula (Binet's formula involving golden ratio), but it's complex—recursion is actually clearer! Each form has trade-offs.
Question 12
A sequence can be viewed as a discrete function whose domain is a subset of the integers. For the Fibonacci sequence defined by f(1)=f(2)=1 and f(n)=f(n−1)+f(n−2) for n≥3 (with domain n∈{1,2,3,…}), find f(7).
- f(7)=8
- f(7)=21
- f(7)=13 (correct answer)
- f(7)=12
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. Recursive definitions specify how to get each term from previous term(s): the Fibonacci sequence is the classic example with f(1) = f(2) = 1 and f(n) = f(n-1) + f(n-2) for n ≥ 3, meaning each term equals the sum of the two before it. To find f(7), you can't jump there directly—you must calculate f(3) = f(2) + f(1) = 2, then f(4) = 3, f(5) = 5, f(6) = 8, f(7) = 13. Recursion requires building up step by step from the initial values! Let's evaluate step by step: f(1)=1, f(2)=1, f(3)=1+1=2, f(4)=2+1=3, f(5)=3+2=5, f(6)=5+3=8, f(7)=8+5=13. Choice C correctly evaluates recursively as f(7)=13. A common mistake might be stopping one step early, like choice A=8 which is f(6), but keep counting carefully—you're doing great! Evaluating recursive sequences systematically: (1) Write down the initial value(s) clearly: f(1)=1, f(2)=1, (2) Set up a table or list: n=1,2,3,..., (3) Apply the recursive rule one step at a time: for Fibonacci, f(3)=f(2)+f(1), so look up f(2) and f(1) from what you've already calculated, add them, write the result, (4) Continue until you reach the desired term. Don't skip steps—recursion is sequential by nature!
Question 13
A sequence can be viewed as a discrete function f whose domain is the positive integers n∈{1,2,3,…}. For the Fibonacci sequence defined by f(1)=f(2)=1 and f(n)=f(n−1)+f(n−2) for n≥3, what is f(7)?
- 21
- 8
- 11
- 13 (correct answer)
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. A sequence is a function whose inputs are integers (often starting at 1 or 0) and whose outputs are the sequence terms: f(1) = first term, f(2) = second term, etc. Unlike continuous functions that have values for all real numbers, sequences have values only at integer positions. If you graphed a sequence, you'd see separate dots (like (1, a1), (2, a2), (3, a3)), not a connected curve. This discrete nature makes sequences fundamentally different from functions like f(x)=x2! Recursive definitions specify how to get each term from previous term(s): the Fibonacci sequence is the classic example with f(1)=1, f(2)=1 and f(n)=f(n−1)+f(n−2) for n≥3, meaning each term equals the sum of the two before it. To find f(7), you can't jump there directly—you must calculate f(3)=f(2)+f(1)=1+1=2, then f(4)=2+1=3, then f(5)=3+2=5, f(6)=5+3=8, finally f(7)=8+5=13. Choice C correctly evaluates recursively as 13. A common distractor like D (21) might come from miscounting terms or starting from f(0), but remember to use the given initial values precisely. Evaluating recursive sequences systematically: (1) Write down the initial value(s) clearly: f(1)=1, f(2)=1, (2) Set up a table or list: n=1,2,3,… down one side, (3) Apply the recursive rule one step at a time: for Fibonacci, f(3)=f(2)+f(1), so look up f(2) and f(1) from what you've already calculated, add them, write the result, (4) Continue until you reach the desired term. Don't skip steps—recursion is sequential by nature! Keep practicing, and you'll master these quickly! Question 14
A sequence is defined by s2=7, s3=11, and sn=sn−1+sn−2 for n≥4. As a function f(n)=sn, what is the most restrictive description of the domain?
- The set {2,3,4,5,6,...} (correct answer)
- The set {0,1,2,3,4,5,...}
- The set {4,5,6,7,8,...}
- The set {1,2,3,4,5,6,...}
Explanation: The sequence is defined starting at n=2 and n=3 as initial conditions, with the recursive rule applying for n≥4. Therefore, the function is defined for all integers n≥2. Choice B incorrectly includes undefined values at n=0 and n=1. Choice C incorrectly excludes the given initial conditions at n=2 and n=3. Choice D incorrectly includes n=1 where the sequence is undefined.
Question 15
A sequence is a function defined only at integer inputs. Which set could be the domain of a sequence a(n) (viewed as a discrete function)?
- {x∈R:x≥0}
- {1,2,3,4,…} (correct answer)
- All real numbers between 0 and 1, inclusive
- All real numbers R
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. A sequence is a function whose inputs are integers (often starting at 1 or 0) and whose outputs are the sequence terms: a(1) = first term, a(2) = second term, etc. Unlike continuous functions that have values for all real numbers, sequences have values only at integer positions. If you graphed a sequence, you'd see separate dots (like (1, a1), (2, a2), (3, a3)), not a connected curve. This discrete nature makes sequences fundamentally different from functions like f(x) = x²! The set {1,2,3,4,...} is a perfect domain for a sequence since it's a subset of positive integers, allowing discrete evaluation like a(1), a(2), etc. Choice B correctly explains the integer domain. Choice A fails because all real numbers would imply a continuous function, not discrete—keep up the good work distinguishing them! Remember, sequences emphasize the ordered list aspect with integer indices.
Question 16
The sequence 1,3,9,27,81,… can be treated as a function g(n) with domain n∈{1,2,3,…}. Which recursive definition correctly generates this sequence?
- g0=1,gn+1=gn+gn−1
- g1=1,gn+1=gn+3
- g1=1,gn+1=3gn (correct answer)
- gn+1=3gn
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. A sequence is a function whose inputs are integers (often starting at 1 or 0) and whose outputs are the sequence terms: g(1) = first term, g(2) = second term, etc. Unlike continuous functions that have values for all real numbers, sequences have values only at integer positions. If you graphed a sequence, you'd see separate dots (like (1,1), (2,3), (3,9)), not a connected curve. This discrete nature makes sequences fundamentally different from functions like f(x) = x²! For this geometric sequence, choice B generates it perfectly: g(1)=1, g(2)=31=3, g(3)=33=9, g(4)=39=27, g(5)=327=81, matching exactly. Choice B correctly defines with initial value and rule as g(n+1)=3g(n). Choice A fails because it produces an arithmetic sequence: 1,4,7,10,..., not matching the given terms—great job spotting the difference! Recursive vs explicit: recursive definitions are often simpler to state ('multiply by 3') but harder to evaluate for large n (must calculate all terms before it). Explicit formulas are harder to find ('g_n = 3n−1') but let you jump to any term: g_100 directly without finding g_1 through g_99. Each form has trade-offs. Question 17
The sequence an is defined recursively by a1=1 and an+1=an+n for n≥1 (so the input n is an integer term number). What is a5?
- 10
- 11 (correct answer)
- 15
- 16
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. Recursive definitions specify how to get each term from previous term(s): here a₁=1, a_{n+1}=a_n + n for n≥1, adding the current n each time. To find a₅, compute step by step: a₂=1+1=2, a₃=2+2=4, a₄=4+3=7, a₅=7+4=11. This sums the first (k-1) positives plus 1, like triangular numbers shifted. Choice B correctly evaluates recursively as 11. Option C (15) might come from adding up to 5 instead of 4, but note the recursion adds n at step to n+1. Evaluating recursive sequences systematically: (1) Write initial a₁=1, (2) Table n=1 to 5, (3) Add the appropriate n each time, (4) Build to the term. The explicit a_n = n(n-1)/2 +1 = 11 for n=5 confirms it—compare forms!
Question 18
A sequence c is a function with domain n∈{1,2,3,…}. It is defined recursively by c1=1, c2=2, and cn=cn−1+cn−2 for n≥3. What is c6?
- c6=8
- c6=13 (correct answer)
- c6=11
- c6=7
Explanation: This question tests your understanding that sequences are special functions where the domain is a subset of the integers—meaning they're only defined for whole number inputs like 1, 2, 3, not for values in between. Recursive definitions specify how to get each term from previous term(s): the Fibonacci sequence is the classic example with c(1)=1, c(2)=2 and c(n)=c(n−1)+c(n−2) for n≥3, meaning each term equals the sum of the two before it. To find c(6), you can't jump there directly—you must calculate c(3)=2+1=3, then c(4)=3+2=5, c(5)=5+3=8, c(6)=8+5=13. Recursion requires building up step by step from the initial values! Let's evaluate step by step: c(1)=1, c(2)=2, c(3)=2+1=3, c(4)=3+2=5, c(5)=5+3=8, c(6)=8+5=13. Choice B correctly evaluates recursively as c(6)=13. A mistake like choice A=8 could be from using different initials like 1,1 and stopping at c(5), but adjust for the given starts—keep up the excellent work! Evaluating recursive sequences systematically: (1) Write down the initial value(s) clearly: c(1)=1, c(2)=2, (2) Set up a table or list: n=1 to 6, (3) Apply the recursive rule one step at a time, (4) Continue until you reach the desired term. Don't skip steps—recursion is sequential by nature! Question 19
A sequence satisfies a1=2 and an+1=an2−3an+4 for n≥1. When viewed as a function, what is f(3) where f(n)=an?
- 10
- 4
- 6
- 2 (correct answer)
Explanation: When you encounter a recursive sequence like this, you're working with a pattern where each term depends on the previous term according to a given formula. The key is to calculate terms step by step until you reach the desired position.
Starting with a1=2, you can find a2 using the recursive formula an+1=an2−3an+4:
a2=a12−3a1+4=22−3(2)+4=4−6+4=2
Now find a3:
a3=a22−3a2+4=22−3(2)+4=4−6+4=2
Since f(n)=an, we have f(3)=a3=2.
Looking at the wrong answers: Choice A (10) might result from incorrectly applying the formula or making arithmetic errors in the calculations. Choice B (4) could come from confusing this with a12=4 or misapplying the recursive relationship. Choice C (6) might arise from calculation mistakes, such as getting 22+3(2)=10 and then making another error.
Notice something interesting here: once a2=2, the sequence becomes constant because substituting 2 into the recursive formula always yields 2. This means 2 is a fixed point of the recurrence relation.
Strategy tip: With recursive sequences, always work step-by-step and double-check your arithmetic. Also watch for patterns—sometimes sequences stabilize, repeat, or follow predictable behaviors that can save you calculation time. Question 20
A sequence is defined recursively by a1=3 and an+1=2an−1 for n≥1. If this sequence represents a function f where f(n)=an, what is the domain of this function?
- All real numbers
- All positive integers starting from 1 (correct answer)
- All integers greater than or equal to 0
- All real numbers greater than or equal to 1
Explanation: Since sequences are functions whose domain is a subset of the integers, and this sequence is defined starting at n=1 with recursive terms for n≥1, the domain consists of all positive integers {1, 2, 3, 4, ...}. Choice A is wrong because sequences don't have real number domains. Choice C is wrong because the sequence starts at n=1, not n=0. Choice D is wrong because the domain must be integers, not all real numbers ≥1.