article

Sequences · Foundational

Sequences Use Position to Organize Values

Understand indexed terms, explicit and recursive rules, and arithmetic and geometric sequence structure.

A sequence is an ordered collection of values, and the order is part of its mathematical identity. The same numbers arranged differently form a different sequence because each position carries meaning. Sequence notation provides a compact way to name individual terms, describe how terms depend on position, and express how one term generates another. This framework appears in population models, payment schedules, computer algorithms, numerical approximations, and infinite-series theory. Learning it begins with treating the index as an input rather than as decoration.

You will learn to interpret ana_n, specify an index set, compare explicit and recursive definitions, derive arithmetic and geometric formulas, use finite differences and ratios diagnostically, and translate between lists, tables, graphs, and rules. You will also study shifted indices, partial sums, recurrence iteration, and modeling limits. Every subscript, exponent, and ellipsis will be explained. Examples will distinguish a term’s position from its value. The goal is to reason about sequences as functions on discrete domains.

Begin any sequence problem by identifying the first allowed index and pairing each displayed value with its index. Determine whether the rule gives a term directly or depends on earlier terms. Test a proposed formula on the initial term and at least two later terms. State the domain because a rule beginning at n=0n=0 can describe a shifted list relative to the same formula beginning at n=1n=1. Finally, treat a pattern inferred from finite data as a model rather than a logically unique conclusion.

An indexing map pairs discrete input positions with sequence values and distinguishes the index n from the term a sub n.

A sequence is a function with an ordered discrete domain

A function assigns exactly one output to each allowed input. A sequence is a function whose domain is an ordered set of integers, often 1,2,3,1,2,3,\ldots or 0,1,2,0,1,2,\ldots. The values may be real numbers, complex numbers, vectors, functions, or other mathematical objects. Ordering comes from the index domain rather than from the numerical sizes of the outputs. A sequence may increase, decrease, repeat, or behave irregularly while remaining well defined.

The notation ana_n is read “a sub n” and means the term of sequence aa at index nn. The subscript nn labels an input; it is not multiplication by nn. Thus a5a_5 means the value in position five when indexing begins at one, while 5a5a would indicate multiplication in a different context. A full sequence may be denoted {an}\{a_n\} together with its index range. Braces here refer to the family of indexed terms, though precise contexts distinguish sequences from unordered sets.

For the list 3,5,7,9,3,5,7,9,\ldots indexed from one, a1=3a_1=3, a2=5a_2=5, and a4=9a_4=9. The ellipsis indicates continuation but does not, by itself, uniquely define how continuation occurs. A formula such as an=2n+1a_n=2n+1 makes the intended rule explicit for positive integers nn. Substituting n=1n=1 gives 33, and substituting n=4n=4 gives 99. The index-to-value mapping is now unambiguous.

The starting index is part of the definition

The formula an=2na_n=2^n gives different first displayed values depending on its domain. If n=1,2,3,n=1,2,3,\ldots, the sequence begins 2,4,8,2,4,8,\ldots. If n=0,1,2,n=0,1,2,\ldots, it begins 1,2,4,8,1,2,4,8,\ldots. The algebraic expression has not changed, but the allowed inputs have. A sequence definition is incomplete when its index set is ambiguous.

Different fields use different starting conventions. Introductory sequences often begin at one because “first term” naturally corresponds to a1a_1. Computer science frequently begins indexing at zero, making the first stored element a0a_0. Power series naturally use n=0n=0 because the constant term contains x0x^0. Neither convention is universally correct; consistency and explicitness matter.

Reindexing shifts labels without necessarily changing the ordered values. If an=2na_n=2^n for n0n\ge0, define bn=an1b_n=a_{n-1} for n1n\ge1. Then b1=a0=1b_1=a_0=1, b2=a1=2b_2=a_1=2, and the displayed values match while the labels differ. The expression for bnb_n is 2n12^{n-1}. Shifted exponents often arise because of this index translation.

Explicit rules compute terms directly

An explicit rule expresses ana_n using the index nn and fixed parameters without requiring earlier sequence values. For an=3+2(n1)a_n=3+2(n-1), substituting any allowed positive integer gives the corresponding term directly. To find a100a_{100}, calculate 3+2(99)=2013+2(99)=201. No preceding ninety-nine terms need to be generated. Explicit formulas are therefore efficient for distant-term evaluation.

The expression n1n-1 counts the number of steps from index one to index nn. At n=1n=1, zero steps have occurred, so the formula returns the starting value 33. At n=2n=2, one increment of two has occurred, giving 55. At n=100n=100, ninety-nine increments have occurred. This step-count interpretation is more reliable than memorizing the visible pattern.

An explicit rule also clarifies domain restrictions. The expression an=1n3a_n=\frac{1}{n-3} is undefined at n=3n=3, so a claimed domain containing three would fail unless that term is separately defined. The expression an=n5a_n=\sqrt{n-5} requires n5n\ge5 for real values. A sequence domain can skip or begin after problematic integers. Formula and domain jointly define the function.

Recursive rules describe generation from prior terms

A recursive definition gives one or more initial values and a rule connecting later terms to earlier ones. The sequence 3,5,7,9,3,5,7,9,\ldots can be defined by a1=3a_1=3 and an+1=an+2a_{n+1}=a_n+2 for n1n\ge1. The first statement supplies a starting anchor. The second says the next term equals the current term plus two. Both parts are necessary.

The notation an+1a_{n+1} means the term whose index is one greater than nn. It does not mean an+1a_n+1. When n=1n=1, the recurrence gives a2=a1+2=5a_2=a_1+2=5. When n=2n=2, it gives a3=a2+2=7a_3=a_2+2=7. Repeated substitution generates the list step by step.

Recursive descriptions emphasize local dynamics and often mirror real processes. A bank balance next month may depend on this month’s balance, interest, deposits, and withdrawals. A population next year may depend on the current population through a growth rule. Computer algorithms can compute recurrence terms iteratively without a closed form. The tradeoff is that reaching a distant term may require all intervening terms unless an explicit solution is found.

A recursion ladder begins at an initial value and applies the same update repeatedly, contrasted with a direct explicit arrow to a distant term.

Arithmetic sequences have constant first difference

An arithmetic sequence changes by a constant amount dd from one term to the next. The recursive definition is an+1=an+da_{n+1}=a_n+d. Subtracting consecutive terms gives an+1an=da_{n+1}-a_n=d, which explains the phrase common difference. The value dd may be positive, negative, or zero. Equal index steps produce equal output changes.

If the first term is a1a_1, then reaching ana_n requires n1n-1 increments of dd. The explicit formula is an=a1+(n1)da_n=a_1+(n-1)d. At n=1n=1, the added part is zero and the formula returns the initial term. At n=2n=2, one difference is added. This initial-term check guards against the common off-by-one error.

For 10,7,4,1,10,7,4,1,\ldots, the common difference is d=3d=-3. With a1=10a_1=10, the explicit rule is an=103(n1)a_n=10-3(n-1). Expanding gives an=133na_n=13-3n, an equivalent formula. Substitution of n=1n=1 and n=4n=4 reproduces 1010 and 11, confirming both initial placement and step size. The negative difference explains why the terms decrease as the index grows.

Geometric sequences have constant ratio

A geometric sequence multiplies by a constant ratio rr from one term to the next. Its recursive form is an+1=rana_{n+1}=ra_n. When terms are nonzero, dividing consecutive terms gives an+1an=r\frac{a_{n+1}}{a_n}=r. The ratio can produce growth, decay, sign alternation, or a constant sequence depending on its value. Multiplication replaces the repeated addition of an arithmetic sequence.

Starting from a1a_1, reaching term ana_n requires n1n-1 multiplications by rr. The explicit formula is an=a1rn1a_n=a_1r^{n-1}. The exponent n1n-1 counts repeated multiplications, just as the arithmetic factor n1n-1 counts repeated additions. At n=1n=1, r0=1r^0=1, so the formula returns a1a_1. The zero exponent is essential to the starting-index convention.

For 5,15,45,135,5,15,45,135,\ldots, the common ratio is r=3r=3. The recursive definition is a1=5a_1=5 and an+1=3ana_{n+1}=3a_n. The explicit rule is an=53n1a_n=5\cdot3^{n-1}. Then a4=533=135a_4=5\cdot3^3=135. Both representations describe the same sequence from different viewpoints.

Differences and ratios diagnose but do not prove a rule

Computing first differences is a useful diagnostic for arithmetic structure. Constant first differences across a table support an arithmetic model. Constant second differences support a quadratic model when indices are equally spaced. Higher finite differences can reveal polynomial patterns of higher degree. These tests organize evidence from discrete values.

Computing consecutive ratios similarly tests a geometric model. If an+1an\frac{a_{n+1}}{a_n} is constant wherever denominators are nonzero, the observed terms follow geometric behavior. Ratios are undefined when a denominator term is zero, so the test needs care. Rounding in measured data may make ratios approximately rather than exactly constant. A model may then be fitted and evaluated rather than declared exact.

No finite list determines a unique infinite continuation without additional assumptions. The first values 1,2,3,41,2,3,4 suggest an=na_n=n, but another formula can agree for those indices and diverge later. For example, adding a term that contains (n1)(n2)(n3)(n4)(n-1)(n-2)(n-3)(n-4) changes later values while leaving the first four untouched. Pattern recognition is therefore an inference based on simplicity or context. State the assumed model class when uniqueness matters.

Graphs of sequences are discrete point sets

Graph a sequence by plotting ordered pairs (n,an)(n,a_n) for allowed indices. Because the domain is discrete, the graph consists of separate points rather than a continuous curve. Connecting points may help the eye see a trend, but the connecting segments are not automatically part of the sequence. An input such as n=2.5n=2.5 may have no sequence value. The graph should preserve that domain distinction.

An arithmetic sequence produces points lying on a line because an=a1+(n1)da_n=a_1+(n-1)d is linear in nn. The slope of the supporting line is dd. A geometric sequence produces points following an exponential shape when r>0r>0, because the index appears in an exponent. The continuous exponential curve can interpolate the pattern, but it defines an extension beyond the original sequence. Discrete and continuous models answer different input questions.

Plotting can expose indexing mistakes. If the first term should appear at n=1n=1 but the formula places it at n=0n=0, every point is shifted horizontally. A table with columns labeled nn and ana_n provides a direct pre-graph check. Axes should name the index and the term’s units when applicable. Position is usually dimensionless, while outputs may carry dollars, meters, organisms, or another unit.

A discrete graph contrasts arithmetic points on a line with geometric points following exponential growth, without connecting segments.

Recursive and explicit forms can be converted

For an arithmetic recurrence an+1=an+da_{n+1}=a_n+d, repeated substitution gives a2=a1+da_2=a_1+d, a3=a1+2da_3=a_1+2d, and a4=a1+3da_4=a_1+3d. The coefficient of dd is always one less than the index. Generalizing gives an=a1+(n1)da_n=a_1+(n-1)d. This derivation links local repeated change to global position. The explicit form is not a separate fact but a compressed recurrence history.

For a geometric recurrence an+1=rana_{n+1}=ra_n, repeated substitution gives a2=ra1a_2=ra_1, a3=r2a1a_3=r^2a_1, and a4=r3a1a_4=r^3a_1. Again the exponent is one less than the index. Generalizing gives an=a1rn1a_n=a_1r^{n-1}. Induction can turn this observed structure into a proof for all positive integers. The base case and update rule mirror the recursive definition.

Not every recurrence has a simple elementary explicit formula. The Fibonacci sequence, defined by F0=0F_0=0, F1=1F_1=1, and Fn+2=Fn+1+FnF_{n+2}=F_{n+1}+F_n, depends on two earlier terms. It has a closed form, but the recurrence is often more natural computationally and conceptually. Other recurrences may require matrix methods, generating functions, or numerical iteration. Explicit and recursive are forms of description, not rankings of mathematical legitimacy.

Partial sums create a new sequence

Given a sequence a1,a2,a3,a_1,a_2,a_3,\ldots, define its nnth partial sum by Sn=k=1nakS_n=\sum_{k=1}^{n}a_k. The capital sigma \sum directs repeated addition. The index kk is a temporary summation variable that begins at one and ends at nn. Thus S3=a1+a2+a3S_3=a_1+a_2+a_3. The partial sums S1,S2,S3,S_1,S_2,S_3,\ldots form a new sequence.

For an arithmetic sequence with first term a1a_1 and last included term ana_n, the finite sum is Sn=n(a1+an)2S_n=\frac{n(a_1+a_n)}{2}. The horizontal fraction bar divides the product n(a1+an)n(a_1+a_n) by two. This formula reflects pairing first with last, second with next-to-last, and so on. An equivalent form substitutes an=a1+(n1)da_n=a_1+(n-1)d. Both require knowing exactly how many terms are included.

For a geometric sequence with first term a1a_1 and ratio r1r\ne1, the finite sum is Sn=a11rn1rS_n=a_1\frac{1-r^n}{1-r}. The exponent nn counts the number of included terms through the cancellation derivation. When r=1r=1, every term equals a1a_1 and the sum is simply na1na_1, so the displayed fraction’s zero denominator signals a separate case. Partial sums lead directly toward infinite-series convergence. Finite and infinite sums must not be conflated.

Growth and decay models use ratios with units and time steps

A repeated percent change produces geometric structure when each period uses the same multiplicative factor. A growth rate of 5%5\% per period corresponds to factor 1+0.05=1.051+0.05=1.05. If P0P_0 is the initial amount at index zero, then Pn=P0(1.05)nP_n=P_0(1.05)^n. Here nn counts completed periods. The indexing convention aligns the zero index with zero elapsed periods.

A decay rate of 12%12\% per period leaves 88%88\%, so the factor is 0.880.88, not 0.12-0.12. The model becomes An=A0(0.88)nA_n=A_0(0.88)^n. Outputs remain positive when A0>0A_0>0, while decreasing toward zero. The phrase “decrease by twelve percent” describes multiplying the previous amount by one minus the decimal rate. Additive subtraction of a fixed amount would instead be arithmetic.

Units and period length belong to the ratio. A factor of 1.051.05 per year cannot be applied for twelve monthly steps without converting the model. If compounding occurs monthly, a monthly factor must be supplied or derived under stated assumptions. Real populations, prices, and balances may have changing rates and external inputs. A geometric sequence is a model whose constant-ratio assumption must be evaluated.

Recurrences can include input as well as multiplication

Many practical sequences combine accumulated state with a recurring addition. A savings balance might follow Bn+1=(1+r)Bn+pB_{n+1}=(1+r)B_n+p, where rr is the interest rate per period and pp is a fixed deposit made according to a stated timing convention. The previous balance is multiplied before the deposit is added in this version. Changing deposit timing changes the recurrence. Every symbol must be tied to an event order.

Iterating from B0=0B_0=0 gives B1=pB_1=p, B2=(1+r)p+pB_2=(1+r)p+p, and B3=(1+r)2p+(1+r)p+pB_3=(1+r)^2p+(1+r)p+p. A geometric sum appears because earlier deposits receive more growth periods. This connection converts a recurrence into an explicit formula under constant rr and pp. The derivation also shows why blindly using a compound-interest formula can miscount payment timing. Writing the first several terms exposes that timing before symbols conceal it.

Units check the recurrence. Both BnB_n and pp have currency units, while rr is dimensionless per stated period. The factor 1+r1+r is dimensionless, so (1+r)Bn(1+r)B_n remains currency and can be added to pp. If terms with incompatible units appear, the model is malformed. Dimensional reasoning applies to discrete models as strongly as to physical equations.

Index shifts require careful substitution

Sequence formulas often appear with n+1n+1, n1n-1, or a general shift n+mn+m. To find an+1a_{n+1} from an explicit rule, replace every occurrence of nn with n+1n+1. If an=n23na_n=n^2-3n, then an+1=(n+1)23(n+1)a_{n+1}=(n+1)^2-3(n+1). Expanding gives n2n2n^2-n-2. Replacing only one occurrence would be an inconsistent substitution.

To find a first difference symbolically, compute an+1ana_{n+1}-a_n. For an=n2a_n=n^2, this is (n+1)2n2=2n+1(n+1)^2-n^2=2n+1. The result depends linearly on nn, showing that first differences change. Taking another difference gives a constant two. This algebra connects the table-based difference pattern to the formula.

Index shifts also appear in recurrences to align initial conditions. A rule written an=an1+da_n=a_{n-1}+d for n2n\ge2 is equivalent to an+1=an+da_{n+1}=a_n+d for n1n\ge1. The allowed nn values change with the notation so both rules begin by computing a2a_2 from a1a_1. State the valid index range beside the recurrence. Without it, the earliest required previous term may be undefined.

Common errors and corrective habits

One common error is confusing ana_n with anan. Subscripts name indexed terms, while adjacent symbols generally indicate multiplication. Another is omitting the starting index, producing an off-by-one shift in formulas such as a1rn1a_1r^{n-1}. Test the first allowed index before trusting a rule. The initial term should emerge without extra steps.

A second error is identifying a geometric sequence from constant differences or an arithmetic sequence from constant ratios. Write separate diagnostic columns and label the operation. A third error is assuming that a few terms prove a unique continuation. State whether the rule is given, derived under an arithmetic or geometric assumption, or merely conjectured. Mathematical honesty includes the basis for pattern selection.

Recursive definitions can fail when initial conditions are missing or insufficient. A two-step recurrence usually needs two starting values, while a one-step recurrence needs one. Check that every requested term can be generated from supplied data. For explicit rules, check domain restrictions and units. For graphs, preserve discrete points rather than silently filling every real input.

A connected example across representations

Consider the sequence 4,9,14,19,4,9,14,19,\ldots beginning at n=1n=1. Consecutive differences are all five, so an arithmetic model is supported. The recursive form is a1=4a_1=4 and an+1=an+5a_{n+1}=a_n+5. The explicit form is an=4+5(n1)=5n1a_n=4+5(n-1)=5n-1. Substituting n=1n=1 and n=4n=4 checks the endpoints shown.

The graph consists of points (1,4),(2,9),(3,14),(4,19),(1,4),(2,9),(3,14),(4,19),\ldots lying on the line y=5x1y=5x-1. The continuous line helps reveal slope but includes inputs not belonging to the original positive-integer domain. The tenth term is a10=5(10)1=49a_{10}=5(10)-1=49. The sum of the first ten terms is S10=10(4+49)2=265S_{10}=\frac{10(4+49)}{2}=265. Each conclusion uses the representation that makes it simplest.

Now shift to zero-based indexing while preserving the displayed values. Define b0=4b_0=4 and bn+1=bn+5b_{n+1}=b_n+5 for n0n\ge0. The explicit formula becomes bn=4+5nb_n=4+5n. Then b9=49b_9=49, corresponding to the same physical tenth listed value as a10a_{10}. The difference between nine and ten is indexing, not sequence content.

Retrieval and connection forward

Without looking back, define a sequence as a function and explain why its domain is discrete. Distinguish index, term, explicit rule, recursive rule, initial condition, common difference, and common ratio. Derive the arithmetic and geometric explicit formulas by counting steps from the first term. Then explain why a finite pattern does not logically determine a unique infinite sequence. If your explanation relies only on visual continuation, return to the role of assumptions.

Sequences lead naturally to summation notation, finite-series formulas, and infinite-series convergence. Difference equations provide discrete analogues of differential equations, while recurrence relations underlie algorithms and dynamic models. Arithmetic sequences connect to linear functions, and geometric sequences connect to exponential functions. Partial sums introduce accumulation, a theme that later appears in integration. Index discipline continues through vectors, matrices, probability, and programming.

The enduring insight is that position is data. A sequence rule does not merely generate numbers; it assigns a value to each allowed integer input. Explicit forms reveal dependence on position, recursive forms reveal dependence on prior state, and graphs preserve the discreteness of the domain. Differences, ratios, and sums expose structure without erasing assumptions. Once indices are handled deliberately, sequence notation becomes a precise language for repeated change.

Continue exploring

Connections

Related articles

FunctionsFunctions Organize Input and OutputSummation NotationSummation Notation Makes Repeated Addition Precise

Applications

  • repeated growth
  • installment schedules
  • finite sums