Product
[f, {i, $i_{min}$, $i_{max}$}]Product
[f, {i, $i_{max}$}]Product
[f, {$i, 1, i_{max}$}].Product
[f, {$i, i_{min}, i_{max}$, di}]Product
[f, {$i, i_{min}, i_{max}$}, {$j, j_{min}, j_{max}$}, ...]Product[k, {k, 1, 10}]
10!
Product[x^k, {k, 2, 20, 2}]
Product[2 ^ i, {i, 1, n}]
Product[f[i], {i, 1, 7}]
Symbolic products involving the factorial are evaluated:
Product[k, {k, 3, n}]
Evaluate the n-th primorial:
primorial[0] = 1;
primorial[n_Integer] := Product[Prime[k], {k, 1, n}];
primorial[12]