A260079 The smallest product of n distinct primes no larger than the (2n)-th to exceed the square root of the (2n)-th primorial.
3, 15, 182, 3135, 81345, 2733549, 114535239, 5708795638, 342503171205, 23622238184727, 1793796113720611, 154171427826650234, 15259854588449248245, 1601991507050573600715, 177792170427340904920562, 22932432920285320919637458, 3164592660873444717893657954, 474678349195034622662784926530
Offset: 1
Keywords
Examples
If the primes 2 through 13 are split into equal-sized sets, the larger product of the two is not less than 182. This is the value for {2, 7, 13}, so a(3)=182.
Links
- James G. Merickel, Table of n, a(n) for n = 1..18
Programs
-
PARI
{ p=vector(50,n,prime(n));i=1; while(1, P=prod(j=1,2*i,p[j]);Q=sqrt(P);r=10^1000; m=prod(j=1,i,p[j]);a=vectorsmall(2*i-1); for(j=1,i,a[j]=1);b=vectorsmall(2*i-1); for(j=i,2*i-1,b[j]=1);while(1, if(m>Q,if(m
Comments