14.2 Sequences & Pattern Recognition

Key Takeaways

  • Always test simple difference and ratio patterns before exotic digit tricks
  • Alternating sequences often hide two interleaved progressions — split odd and even positions
  • Letter sequences usually map to alphabet positions (A=1…Z=26) or to keyboard/skip patterns
  • Mixed number-letter items need a consistent rule applied to each channel (value and letter) separately
  • Under time pressure, write the deltas between terms; if deltas themselves form a pattern, you have found the rule
Last updated: July 2026

Pattern recognition is a core aptitude skill carried forward from ICTL-style testing into Cyber Test prep. Analysts spot anomalies in packet rates, process trees, and log timelines the same way: find the governing rule, then see what must come next or which item breaks the rule.

This section teaches a disciplined method for number sequences, letter sequences, and mixed patterns. The goal is not memorizing every trick; it is building a checklist that works when the clock is running.

A Reliable Attack Order

When you see a sequence, run these checks in order:

  1. Constant difference (arithmetic): 7, 10, 13, 16… (+3)
  2. Constant ratio (geometric): 3, 6, 12, 24… (×2)
  3. Changing differences: differences themselves form a sequence (second-order arithmetic)
  4. Alternating / interleaved: two rules on odd vs. even positions
  5. Digit operations: sum of digits, reverse digits, square/cube of position, ± position index
  6. Letter maps: alphabet position, reverse alphabet, skip-n letters
  7. Hybrid: numbers follow one rule, letters another

Write the differences under the terms. If nothing appears, try ratios. Only then invent digit gymnastics.

Number Sequences — Worked Puzzles

Puzzle 1 — arithmetic

Sequence: 14, 19, 24, 29, ?

Differences: +5, +5, +5. Next term: 29 + 5 = 34.

Puzzle 2 — second-order differences

Sequence: 3, 5, 9, 15, 23, ?

First differences: +2, +4, +6, +8. Those differences increase by +2 each time, so the next difference is +10. Next term: 23 + 10 = 33.

This pattern appears often: the visible sequence is not constant-difference, but the deltas are arithmetic.

Puzzle 3 — geometric with a twist

Sequence: 2, 6, 18, 54, ?

Ratios: ×3, ×3, ×3. Next: 54 × 3 = 162.

Variant: 2, 6, 12, 36, 72, 216… Here odd steps multiply by 3 and even steps multiply by 2 (or vice versa depending on indexing). Split positions if a single ratio fails.

Puzzle 4 — alternating / interleaved

Sequence: 4, 9, 6, 12, 8, 15, 10, ?

Odd positions: 4, 6, 8, 10… (+2) → next odd-position term would continue that line, but the blank is an even position. Even positions: 9, 12, 15, ? … (+3). Next even-position term: 18.

Always label positions 1..n and split when consecutive differences flip sign or size irregularly.

Puzzle 5 — digit / positional rule

Sequence: 13, 26, 39, 52, ? looks like ×2 then +something, but it is simply multiples of 13: 13×1, 13×2, 13×3, 13×4, so next is 13×5 = 65.

Another digit style: 17, 28, 41, 56, ? where each term adds the sum of its own digits to itself: 17 + (1+7)=25? That fails. Better check: +11, +13, +15 → differences grow by +2, so next difference +17; 56 + 17 = 73. Do not force a digit story when second-order differences already work.

Puzzle 6 — find the outlier

Which does not belong: 8, 27, 64, 100, 125?

Cubes: 2³=8, 3³=27, 4³=64, 5³=125. 100 is 10², not a cube. Outlier questions are sequences in disguise: identify the rule, then the term that breaks it.

Letter Sequences — Worked Puzzles

Map A=1 … Z=26 unless the problem clearly uses reverse alphabet (A=26) or keyboard adjacency.

Puzzle 7 — constant skip

C, F, I, L, ?

Positions: 3, 6, 9, 12 → +3 each time. Next: 15 → O.

Puzzle 8 — alternating skip sizes

A, C, F, J, O, ?

Gaps: +2, +3, +4, +5 → next gap +6. O is 15; 15+6=21 → U.

Puzzle 9 — reverse paired with forward

A, Z, B, Y, C, X, ?

Odd positions climb A,B,C…; even positions descend Z,Y,X…. Next is an odd position after C → D.

Puzzle 10 — letter arithmetic using positions

Sequence of pairs: AZ, BY, CX, ?

First letters A,B,C → D; second letters Z,Y,X → W. Next pair: DW.

Mixed Number-Letter Patterns

Puzzle 11

A1, C2, E4, G8, ?

Letters: A,C,E,G → skip one each time → next letter I. Numbers: 1,2,4,8 → ×2 → next number 16. Answer: I16.

Puzzle 12

2B, 4D, 8F, 16H, ?

Numbers double; letters advance by two positions (B,D,F,H → J). Next: 32J.

If a mixed item seems chaotic, separate channels on scratch paper: write only the letters in one column and only the numbers in another, solve each, then recombine.

Cyber-Flavored Pattern Framing (Still Aptitude)

You may see sequences dressed in tech clothing — port numbers, octet fragments, or version strings — but the governing rule is still arithmetic or positional. Example: 192, 168, 1, 1, 192, 168, 1, 2, 192, 168, 1, ? continues the host octet +1 → 3, with the leading 192.168.1 repeating as a frame. Do not overfit IPv4 knowledge if the numeric pattern alone already determines the blank.

Speed Tips for Test Day

  • Estimate before compute: if terms grow slowly, prefer addition; if they explode, prefer multiplication or exponents.
  • Check the last two gaps first when stuck; they often reveal an accelerating difference.
  • Reject a rule that fits early terms but fails a later given term. A valid rule must fit every provided term.
  • For multiple choice, plug each option into your candidate rule rather than regenerating the entire series from scratch when time is short.
  • Watch units and formatting: leading zeros, hex-looking strings, or spaced groups may signal digit blocks (for example, 10 11 12 13 in binary-looking pairs that are actually just consecutive decimals).

Mini Drill Set (Solve, Then Verify)

  1. 5, 10, 20, 40, ? → 80 (×2)
  2. 9, 16, 25, 36, ? → 49 (consecutive squares 3²…7²)
  3. Z, X, V, T, ? → R (skip one backward)
  4. 1, 1, 2, 3, 5, 8, ? → 13 (Fibonacci-style sum of prior two)
  5. 7, 10, 9, 12, 11, 14, ? → split: odds 7,9,11… and evens 10,12,14…; next is odd-position continuation → 13

Pattern skill compounds: the same "find the rule, test every term, project one step" loop helps when reading SIEM timelines or spotting beaconing intervals. For the Cyber Test's logic heritage, keep the method mechanical and resist story-based leaps.

Test Your Knowledge

What is the next term in 4, 7, 12, 19, 28, ?

A
B
C
D
Test Your Knowledge

Sequence: A, D, I, P, ? Which letter comes next?

A
B
C
D
Test Your Knowledge

In 3, 8, 5, 10, 7, 12, 9, ?, the blank is most strongly determined by which rule?

A
B
C
D
Test Your Knowledge

Pattern: B2, D4, F8, H16, ?. What is the next term?

A
B
C
D