A sequence of numbers where each term is the square of the previous term.
A sequence of numbers in which the difference of any two successive members is a constant.
A sequence of numbers where each term is twice the sum of the previous two terms.
A sequence of numbers decreasing at a constant percentage.
a_n = a_1 + (n - 1) * d
a_n = a_1 * r^(n-1)
a_n = n^2 + c
a_n = a_1 * d^n
A sequence where each term is the sum of all previous terms.
A sequence of numbers that increases by a constant amount.
A sequence of numbers where each term is found by multiplying the previous term by a fixed number.
A sequence where each term alternates between positive and negative signs.
a_n = a_1 + n - 1
a_n = a_1 + d*n
a_n = a_1 / (r^(n-1))
a_n = a_1 * r^(n-1)
3
9
27
81
S_n = n/2 * (a_1 + a_n)
S_n = n * (a_1 * a_n)
S_n = (a_1 + a_n) / n
S_n = (a_1 - a_n) * n/2
A series of numbers where each number is the sum of the two preceding ones.
A sequence of numbers chosen randomly.
A sequence where each term doubles the previous term.
A linear sequence with a common difference.
Check if the difference between consecutive terms is always the same.
Check if each term is a multiple of the previous one.
Check if the sum of consecutive terms is the same.
Check if all terms are square numbers.
Divide each term by the previous term to check if the ratio is constant.
Add each term to the next to ensure they are even.
Find the difference between consecutive terms.
Ensure all terms are prime numbers.
A formula that defines each term using the previous terms.
A formula that calculates the sum of the sequence.
A formula that uses the square root of terms.
A formula that involves integration of terms.