Mathematical AlgorithmsBeginner

Sieve of Eratosthenes

Find all prime numbers up to n by iteratively marking composites. Named after Eratosthenes of Cyrene (c. 276-194 BC).

#mathematical#prime-numbers#number-theory#ancient-algorithm

Complexity Analysis

Time (Average)

O(n log log n)

Expected case performance

Space

O(n)

Memory requirements

Time (Best)

O(n log log n)

Best case performance

Time (Worst)

O(n log log n)

Worst case performance

How it works

  • • Find all prime numbers up to n
  • • Iteratively mark composites
  • • O(n log log n) time complexity
  • • O(n) space complexity
  • • Named after Eratosthenes of Cyrene (c. 276-194 BC)
Step: 1 / 0
500ms
SlowFast
Keyboard Shortcuts
Space Play/Pause StepR Reset1-4 Speed

Real-time Statistics

Algorithm Performance Metrics

Progress0%
Comparisons
0
Swaps
0
Array Accesses
0
Steps
1/ 0

Algorithm Visualization

Step 1 of 0

Initialize array to begin

Default
Comparing
Swapped
Sorted

Code Execution

Currently executing
Previously executed

Implementation

Sieve of Eratosthenes - Algorithm Vision