Generating Sequence Terms
Updated August 2025
Generating terms of a sequence is a foundational skill for university admission tests. This guide covers term-to-term and position-to-term rules, explaining how to use recursive notation and th term formulas to find specific values or determine the exact position of a term within a numerical progression.
A sequence is a list of numerical terms generated by a specific rule. A term-to-term rule defines a term based on the preceding one (recursion), whereas a position-to-term rule (the th term) defines a term based directly on its index .
A sequence is a list of terms together with a rule for generating them. In mathematics for university admission, you are expected to handle two primary types of rules: term-to-term rules and position-to-term rules. Understanding how to navigate between these is key to identifying specific values in a progression or determining if a given number is a member of a set.
Term-to-term Rules
A term-to-term rule specifies how to calculate the next term in a sequence based on the current term. These rules require a starting value, usually denoted as . For example, a sequence starting with 3 and using a term-to-term rule of adding 4 would be 3, 7, 11, 15, 19, and so on.
Formal notation often uses for the th term and for the following term. A rule such as and generates the sequence 7, 5, 3, 1, -1. This is also known as a recursive definition.
Worked Example: Using a Term-to-term Rule
Find the next four terms in the sequence defined by and .
- For : .
- For : .
- For : .
- For : .
The resulting terms are 5, 9, 17, and 33.
Position-to-term Rules
A position-to-term rule, often referred to as the th term rule, allows you to calculate the value of a term based solely on its position in the list. This is highly efficient for finding terms far along in a sequence without calculating all intermediate values.
For example, if the rule is :
- The 3rd term () is .
- The 8th term () is .
Worked Example: Finding Terms from an th Term Rule
Find the 4th and 10th terms for the sequence whose th term rule is .
- To find the 4th term, substitute : .
- To find the 10th term, substitute : .
Checking Membership and Position
Exam questions often require you to determine if a specific value belongs to a sequence or to find the position index for a given value. This typically involves solving an algebraic equation.
Worked Example: Deciding if a Number is in a Sequence
Is 272 in the sequence 2, 6, 10, 14, ...? Explain your answer.
The first term is 2 and the term-to-term rule is adding 4. If a term is in this sequence, subtracting the first term (2) must result in a multiple of the common difference (4).
.
Since 270 is not a multiple of 4 (), 272 is not a term in this sequence. This can also be seen by finding the th term rule, , and setting it equal to 272, which yields , which is not an integer.
Worked Example: Finding the Position of a Term
In the sequence , which term is 35?
To find the position, set the th term rule equal to 35 and solve for :
This gives or . Since the position must be a positive integer, we discard the negative root. Therefore, 35 is the 5th term of the sequence.
Key takeaways
- A term-to-term rule requires both a starting value and a relationship between and .
- The position of a term, , must always be a positive integer (1, 2, 3...).
- Position-to-term rules (the th term) are the most efficient way to find values far into a sequence.
- To find which term equals a certain value, set the th term expression equal to that value and solve for .
- In quadratic sequences, always discard negative solutions for as they are physically impossible in the context of a list.
When faced with a large number and asked for its position, always look for a position-to-term rule. Iterating a term-to-term rule manually is error-prone and time-consuming in an exam.
Be careful with the first term. If a rule is , the first term is when , not . Miscounting the starting index is a frequent source of errors in sequence problems.
Term-to-term rules are the basis for recurrence relations in computer science and advanced calculus. While they are intuitive for building a list, converting them to position-to-term rules is a powerful technique for analysing long-term behaviour.
Worked Examples
Practice Questions
Frequently asked questions
What is the difference between and ?
represents the position or index of the term in the sequence (e.g., 1st, 2nd, 3rd), while represents the actual numerical value at that specific position.
Can a sequence have a fractional position?
No. By definition, a sequence is an ordered list where each term corresponds to a discrete position . Therefore, must always be a positive integer ().
Is a recursive rule the same as a term-to-term rule?
Yes. In both cases, the value of the next term is defined based on the value of one or more previous terms.
How do I check if a very large number is in an arithmetic sequence?
Find the th term rule, set it equal to the large number, and solve for . If is a positive integer, the number is in the sequence; if is a fraction or decimal, it is not.