Introduction
Prime Number Series use prime numbers (numbers greater than 1 with no positive divisors other than 1 and themselves). These series appear often in reasoning tests to check number-sense and quick divisibility checks.
Pattern: Prime Number Series
Pattern
The key idea: Each term is a prime number - the next term is the next prime in ascending order.
Definition: A prime is an integer > 1 that has no positive integer divisors other than 1 and itself.
Common Methods to Identify Next Prime:
• Check successive integers after the last term and test for divisibility by primes ≤ √n (trial division).
• Use elimination: skip even numbers (except 2) and numbers ending with 5 (except 5).
• For small series, memorise the first few primes: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47.
Notes & Patterns:
• 2 is the only even prime; all other primes are odd.
• Gaps between consecutive primes vary (prime gaps).
• Special subpatterns: twin primes (pairs like 11 & 13), prime squares rarely used as prime terms.
Step-by-Step Example
Question
Find the next term in the series: 2, 3, 5, 7, 11, 13, ?
Solution
-
Step 1: Observe the given terms
The terms listed are consecutive prime numbers: 2, 3, 5, 7, 11, 13. -
Step 2: Check the next integer after 13
Test 14 (even → not prime), 15 (divisible by 3 → not prime), 16 (even → not prime), 17 (trial division: not divisible by 2,3,5). -
Step 3: Confirm primality of 17
√17 ≈ 4.12 - test divisibility by primes ≤ 4 (2 and 3). 17 is not divisible by 2 or 3, so 17 is prime. -
Final Answer:
17 -
Quick Check:
The next prime after 13 is 17 (14-16 are composite) ✅
Quick Variations
1. Prime pairs (twin primes): e.g., (11, 13), (17, 19).
2. Prime gaps: series may skip primes to form a pattern (e.g., every second prime).
3. Mixed patterns: primes combined with arithmetic shifts (e.g., prime + 2, prime × 2 patterns).
Trick to Always Use
- Step 1 → Memorise small primes up to at least 50 for quick lookup.
- Step 2 → For a candidate number n, test divisibility only by primes ≤ √n (2,3,5,7,11...).
Summary
Summary
- Recognise prime series by checking each term has no divisors except 1 and itself.
- Skip checking even numbers (except 2) and multiples of 5 (except 5) to narrow candidates.
- Use trial division up to √n to confirm primality for small n quickly.
- Memorise the first 15-20 primes for speed in tests.
Example to remember:
Series: 11, 13, 17, 19 → next = 23 (primes in ascending order)
