C (gcc), (削除) 110 (削除ここまで) \$\cdots\$ (削除) 95 (削除ここまで) 84 bytes
d;p;r;f(a,l)int*a;{for(r=p=1;l--;r*=pow(p,*a++))for(d=2;d>1;)for(d=++p;p%--d;);d=r;}
Explanation
Inputs an array of prime exponents and its length \$l\$ (because C arrays have undefined length) and returns the product of the first \$l\$ primes to those exponents.
Inputs an array of prime exponents and its length \$l\$ and returns the product of the first \$l\$ primes to those exponents.
Inputs an array of prime exponents and its length \$l\$ (because C arrays have undefined length) and returns the product of the first \$l\$ primes to those exponents.