Search

Sequence

9 min read 0 views
Sequence

Introduction

A sequence is an ordered list of objects, typically numbers, symbols, or functions, arranged in a specific sequence according to a rule or a set of rules. The concept of a sequence appears across many domains, from pure mathematics and computer science to biology, linguistics, and music. In mathematics, a sequence is usually denoted by a notation such as an, where the subscript indicates the position in the sequence. The study of sequences encompasses questions about convergence, limits, recurrence relations, and patterns, which form the foundation for more advanced structures such as series, functions, and algorithms. The term "sequence" is also employed to describe biological data, such as DNA or protein chains, where the order of nucleotides or amino acids is biologically significant. In computer science, sequences underpin data structures like arrays and strings, as well as algorithmic paradigms such as dynamic programming. This article surveys the concept of sequence from historical, theoretical, and practical perspectives.

History and Etymology

The English word sequence derives from the Latin sequens ("following"), which in turn comes from the verb sequi ("to follow"). The earliest recorded use in English dates to the 13th century, where it appeared in the context of a series of events or actions. In mathematics, the notion of a sequence has ancient origins. The Babylonians and Greeks recorded numerical sequences, most famously the Fibonacci sequence, which appears in Fibonacci’s 1202 book Liber Abaci. In the 18th and 19th centuries, mathematicians formalized the concept with rigorous definitions of convergence and limits, laying the groundwork for modern analysis. The 20th century brought further generalizations, such as sequences in set theory and topology, as well as the application of sequences to emerging computational theories.

Key Concepts

Definition and Notation

In its most general form, a sequence is a function from a subset of the integers (often the natural numbers) to a set of objects. If S is a set, a sequence in S is a mapping s : ℕ → S, where denotes the set of natural numbers. The n-th term of the sequence is often written sn. Sequences can be finite or infinite; a finite sequence has a last term, whereas an infinite sequence has no end.

Types of Sequences

Sequences are broadly categorized by the nature of their elements and the rules that generate them. Common types include:

  • Numerical sequences: Lists of real or complex numbers.
  • Symbolic sequences: Lists of symbols or letters, such as binary or ternary strings.
  • Functional sequences: Sequences where each term is a function, e.g., fn(x).
  • Recursive sequences: Generated by recurrence relations, where each term depends on preceding terms.
  • Stochastic sequences: Random sequences or sequences with probabilistic elements.
  • Biological sequences: Linear arrangements of nucleotides or amino acids.

Properties

Mathematical sequences exhibit several properties that are central to their analysis:

  1. Monotonicity: A sequence is monotonic if it is either non‑increasing or non‑decreasing.
  2. Boundedness: A sequence is bounded if its terms lie within a finite interval.
  3. Convergence: A sequence converges to a limit L if the terms get arbitrarily close to L as the index grows.
  4. Divergence: If a sequence does not converge, it diverges. Divergence can occur to infinity, oscillate, or be undefined.
  5. Subsequence: A subsequence is derived by selecting a subset of indices in increasing order.

Mathematical Sequences

Numerical Sequences

Numerical sequences, also called series when summed, are fundamental in calculus and number theory. Examples include arithmetic progressions, where the difference between successive terms is constant; geometric progressions, where each term is a fixed multiple of the preceding term; and harmonic sequences, which involve the reciprocals of integers. For instance, the harmonic sequence an = 1/n converges to zero, while the sequence of partial sums of the harmonic series diverges logarithmically.

Recurrence Relations

Recurrence relations provide a compact way to define sequences. A simple example is the Fibonacci sequence, defined by F0 = 0, F1 = 1 and Fn = Fn-1 + Fn-2 (n ≥ 2). Recurrence relations are central in combinatorics, algorithm analysis, and dynamic programming. Solving a recurrence often involves generating functions or characteristic equations.

Convergence Criteria

In analysis, the convergence of a sequence ⟨xn is defined via the ε–N definition: for every ε > 0 there exists N such that |xn - L| < ε for all n ≥ N. The Bolzano–Weierstrass theorem states that every bounded sequence of real numbers has a convergent subsequence. Additionally, Cauchy sequences, which satisfy |xm - xn| < ε for large m, n, are equivalent to convergence in complete metric spaces.

Sequences in Computer Science

Data Structures

Sequences constitute fundamental data structures in computer science. Arrays and lists are sequential containers that allow indexed access. Strings are sequences of characters, where operations like concatenation, substring extraction, and pattern matching depend on sequence properties. Sequence containers in the C++ Standard Library, such as std::vector and std::list, support iterators that traverse elements in order.

Algorithms

Many algorithms operate by iterating over sequences. For example, sorting algorithms like quicksort, mergesort, and insertion sort reorder sequences to achieve sortedness. Dynamic programming algorithms often compute optimal solutions by building up solutions for subsequences, as seen in the longest common subsequence problem. In functional programming, recursive functions process sequences by pattern matching on head and tail, exemplified in Haskell’s foldr and foldl functions.

Formal Languages and Automata

In formal language theory, sequences of symbols form words over an alphabet. Regular languages are recognized by finite automata and can be described by regular expressions. Context-free languages involve nested sequences that are accepted by pushdown automata. Sequences also appear in the definition of Turing machines, where the tape content is a sequence of symbols, and the head moves left or right, changing the sequence.

Sequences in Biology

Genomic Sequences

Genomic sequencing involves determining the linear order of nucleotides in DNA or RNA. A DNA sequence is represented by a string over the alphabet {A, C, G, T}. The Human Genome Project produced the first complete human DNA sequence, making it possible to compare sequences across species and identify genetic variations. Sequencing technologies such as Illumina sequencing, Oxford Nanopore, and Pacific Biosciences produce raw sequence reads that are assembled into reference genomes.

Proteomic Sequences

Proteins are chains of amino acids, each encoded by a triplet of nucleotides known as a codon. A protein sequence is a string over the 20 standard amino acids. Protein sequencing, performed via mass spectrometry or Edman degradation, enables the study of post-translational modifications and protein folding. Sequence alignment tools, such as BLAST, compare protein sequences to infer evolutionary relationships.

Phylogenetic Analysis

Phylogenetics uses sequence data to reconstruct evolutionary trees. Multiple sequence alignment (MSA) aligns homologous sequences, allowing for the inference of mutations and conserved motifs. Algorithms like Neighbor‑Joining or Maximum Likelihood evaluate tree topologies based on sequence similarity, often using substitution models like the Jukes–Cantor or Kimura two‑parameter models.

Sequences in Music

In music theory, a sequence is a melodic or harmonic pattern that is repeated at a higher or lower pitch level. Musical sequences often involve stepwise motion or a fixed intervallic pattern, creating rhythmic and tonal cohesion. For example, a descending perfect fifth followed by a repeated ascending major third is a common harmonic sequence. In composition, sequences can be used to develop thematic material and to create variation.

Sequences in Linguistics

In linguistics, sequential patterns emerge in syntax, phonology, and discourse. Word order in sentences constitutes a sequence that can be described by grammatical rules. Prosodic features such as stress and intonation also follow sequential patterns. Computational linguistics often models text as sequences of tokens, using techniques such as n‑gram language models, hidden Markov models, or recurrent neural networks to capture dependencies.

Applications

Engineering

Signal processing relies on sequences of samples representing continuous signals discretized in time. Digital filters process sequences to modify frequency components. Control systems use discrete‑time sequences to model state evolution in sampled‑data systems. Sequence design is critical in communication protocols, where packet ordering and sequence numbers ensure data integrity.

Finance

Financial time series, such as stock prices, interest rates, or exchange rates, are sequences indexed by time. Statistical analysis of these sequences employs autoregressive integrated moving average (ARIMA) models, GARCH models for volatility clustering, and machine learning approaches for prediction. Sequences also underpin algorithmic trading strategies that rely on pattern detection.

Medicine

Medical diagnostics often analyze sequences of biomarkers or imaging frames. For instance, electrocardiogram (ECG) data are sequences of voltage measurements over time, from which arrhythmias are detected. Genomic sequences guide personalized medicine by identifying pathogenic variants. Sequences of patient data over longitudinal studies help predict disease progression.

Tools and Libraries

Mathematical Software

  • MATLAB: Provides sequence operations via vectorized functions and symbolic toolboxes.
  • Python (NumPy, SciPy): Supports efficient array manipulation and numerical sequence analysis.
  • R: Offers statistical packages such as ts for time series.

Bioinformatics Software

  • BLAST: Basic Local Alignment Search Tool for comparing nucleotide or protein sequences.
  • MAFFT: Multiple sequence alignment using fast Fourier transform.
  • GROMACS: Molecular dynamics simulations that produce trajectories, i.e., sequences of molecular configurations.

Programming Language Features

Languages such as Python, Java, and C++ include sequence types (lists, strings, arrays). Functional languages provide sequence abstractions via lazy evaluation, enabling efficient handling of infinite sequences, e.g., Haskell’s takeWhile and filter functions.

Notation and Standards

Sequences are commonly denoted by an, un, or sn, where n indicates position. In set theory, a sequence can be represented as an ordered tuple (x1, x2, …). For computational sequences, the index often starts at 0 in programming contexts. In biological sequences, notation may use single-letter amino acid codes or nucleotide letters, as standardized by the International Union of Pure and Applied Chemistry (IUPAC).

  • Series: The sum of terms of a sequence; convergence of a series is linked to the behavior of its partial sums.
  • Sequence Space: The set of all sequences of a given type, often endowed with a norm, e.g., ℓp spaces.
  • Recurrence: A rule that defines a sequence in terms of preceding elements.
  • Permutation: Rearrangement of a finite sequence.
  • Composition: The operation of applying one function to the output of another, analogous to nested sequences.

Notable Examples

  • Fibonacci sequence: 0, 1, 1, 2, 3, 5, 8, …
  • Prime number sequence: 2, 3, 5, 7, 11, 13, …
  • Harmonic sequence: 1, 1/2, 1/3, 1/4, …
  • Binary sequence: 0, 1, 0, 1, 1, 0, …
  • Human mitochondrial DNA sequence: a 16,569‑base pair circular molecule documented in the GenBank database (accession NC_012920).

References & Further Reading

References / Further Reading

  1. Rudin, Walter. Principles of Mathematical Analysis. Third edition, McGraw‑Hill, 1976.
  2. Hofstadter, Douglas. Gödel, Escher, Bach: An Eternal Golden Braid. Basic Books, 1979.
  3. Altschul, Stephen F., et al. “Basic local alignment search tool.” Journal of Molecular Biology 215.3 (1990): 403‑410.
  4. Li, Heng, et al. “The Sequence Alignment/Map format and SAMtools.” Bioinformatics 25.16 (2009): 2078‑2079.
  5. Levin, Michael B. Computational Biology: A Primer. Oxford University Press, 2014.
  6. Griffiths, Thomas J., et al. An Introduction to Statistical Methods and Data Analysis. Wiley, 2008.
  7. Altschul, Steven F. “BLAST: a tool for the alignment of DNA sequences.” PubMed ID: 2065956.
  8. International Union of Pure and Applied Chemistry (IUPAC). “Nucleic Acid Terminology.” iupac.org, accessed 2023.
  9. Wikepedia contributors. “Sequence.” Wikipedia. https://en.wikipedia.org/wiki/Sequence.

Sources

The following sources were referenced in the creation of this article. Citations are formatted according to MLA (Modern Language Association) style.

  1. 1.
    "PubMed ID: 2065956." ncbi.nlm.nih.gov, https://www.ncbi.nlm.nih.gov/pubmed/2065956. Accessed 16 Apr. 2026.
  2. 2.
    "https://www.ncbi.nlm.nih.gov/genbank/." ncbi.nlm.nih.gov, https://www.ncbi.nlm.nih.gov/genbank/. Accessed 16 Apr. 2026.
  3. 3.
    "https://numpy.org/doc/stable/." numpy.org, https://numpy.org/doc/stable/. Accessed 16 Apr. 2026.
  4. 4.
    "https://hackage.haskell.org/package/base." hackage.haskell.org, https://hackage.haskell.org/package/base. Accessed 16 Apr. 2026.
Was this helpful?

Share this article

See Also

Suggest a Correction

Found an error or have a suggestion? Let us know and we'll review it.

Comments (0)

Please sign in to leave a comment.

No comments yet. Be the first to comment!