Prime product pp(n) >/ 19*n for every natural n >/ 7
This wlog (for n >/ 7) can be read independently of wlog https://aot2025.blogspot.com/2025/09/prime-product-ppn-5n-of-primes-p-4-p-n.html while it is a continuation of that previous wlog (for n >/ 5). ========================================== Terminology: N := {1 2 3 ...} -- the set of all natural numbers P := {2 3 5 7 11 13 17 ... } -- the set of all primes pp (x) := prod{ p in P: p \< x}. -- the product of all primes that are \< x ======================================================== The product of the empty set, i.e. of zero elements, is equal to 1 (by a definition). This starts the list below: pp (1) = 1 pp (2) = 2 pp (3) = 2*3 = 6 pp (4) = pp (3) = 6 pp (5) = 2*3*5 = 30 pp (6) = pp (5) = 30 pp (7) = 2*3*5*7 = 210 pp (10) = pp (9) = pp (8) = pp (7) = 210 pp (11) = 2*3*5*7*11 = 2310 pp (12) = pp (11) = 2310 pp (13) = 2*3*5*7*11*13 = 30030...