A107712 a(n) = Product_{k=1..n} prime(k+n).
1, 3, 35, 1001, 46189, 2800733, 247110827, 25626846353, 3359814435017, 525737919635921, 86239147714071593, 16043263382808092801, 3203015854291983284351, 765364544499964883824067, 196164712672886348479652149, 51407675872168960728167564239
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..288
Programs
-
Maple
a:=n->product(ithprime(k+n),k=1..n): seq(a(n),n=0..16); # Emeric Deutsch
-
Mathematica
f[n_] := Product[Prime[k + n], {k, n}]; Table[ f[n], {n, 0, 14}] (* Robert G. Wilson v, Jun 14 2005 *)
Formula
a(n) = A096334(2n,n). - Alois P. Heinz, Jan 21 2022
Extensions
More terms from Robert G. Wilson v and Emeric Deutsch, Jun 13 2005