prime-factor 0.6.3

A prime number factorizer written in Rust
Documentation
spokes = [
    11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73,
    79, 83, 89, 97, 101, 103, 107, 109, 113, 121, 127, 131, 137, 139, 143,
    149, 151, 157, 163, 167, 169, 173, 179, 181, 187, 191, 193, 197, 199,
    209, 211
]
firsts = [2, 3, 5, 7]
gaps = []

# Gaps for the first 4 primes
gaps.append(2) # 0 -> 2
gaps.append(1) # 2 -> 3
gaps.append(2) # 3 -> 5
gaps.append(2) # 5 -> 7

# Gap leading up to 11
gaps.append(11 - 7) 

for i in range(1, len(spokes)):
    gaps.append(spokes[i] - spokes[i-1])

print(", ".join(map(str, gaps)))
print("Total elements:", len(gaps))