I am going through this youtube tutorial on euclid's technique for proving that there are an infinite number of primes - https://www.youtube.com/watch?v=pNhbW1Hrjcs
This question is also there on the site (although closed as off-topic)
I have tried to work it out as follows -
- Assume all numbers beyond 16 as "infinity"
- So the set of prime numbers would be -
2,3,5,7,11,13
- Their products (up to that element in the set) are as follows -
2, 6, 30, 210, 2310, 30031
- For the above results (products), for elements until 13, all entries (n+1) yields a prime -
3,7,31,211,2311
but30031
is composite (59 * 509
). - As can be seen the smallest number 59 is in the "infinite" section as per our assumption (1)
- So the question is - what is the smallest number P(i) in the set of primes (2,3,...i,...n) such that the primorial (the prime equivalent of factorial) plus 1 (going as per euclid's proof) has a factor that is less than or equal to P(i) ?
PS - I've tried using a spread sheet but a primorial grows quite quickly (similar to a factorial). So thought I would ask if there is a known sample.