Comments by "Le YASEP" (@leyasep5919) on "Is 1 a Prime Number?" video.
-
3
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
1
-
 @angelmendez-rivera351 "the fact that you have to rely on links, rather formal source citation," => I can strip the URL from the DOI refs but it felt nicer to provide the text as well.
Now you might have seen that wheel sieves are used for certain kinds of factorisation. You seem to have stopped there. It does not have to be limited to this application though.
Here is the output of a sample wheel code that was initialised with 1:
New prime: 2
Primorial: 2
New size: 1
New wheel: [2]
New prime: 3
Primorial: 6
New size: 2
New wheel: [4, 2]
New prime: 5
Primorial: 30
New size: 8
New wheel: [6, 4, 2, 4, 2, 4, 6, 2]
New prime: 7
Primorial: 210
New size: 48
New wheel: [10, 2, 4, 2, 4, 6, 2, 6, 4, 2, 4, 6, 6, 2, 6, 4, 2, 6, 4, 6, 8, 4, 2, 4, 2, 4, 8, 6, 4, 6, 2, 4, 6, 2, 6, 6, 4, 2, 4, 6, 2, 6, 4, 2, 4, 2, 10, 2]
Tell me how it didn't generate a sequence of prime numbers. Tell me how the fact that you think I don't understand this mechanism makes this somehow impossible.
The result is there : the wheel sieve can be configured to generate a new prime from the previous (and a previous wheel) and the algorithm was primed with a single 1.
1