A093570 a(n) = Product_{k=1..n}(k + prime(k)).
3, 15, 120, 1320, 21120, 401280, 9630720, 260029440, 8320942080, 324516741120, 13629703127040, 667855453224960, 36064194474147840, 2055659085026426880, 127450863271638466560, 8794109565743054192640, 668352326996472118640640
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..342
Programs
-
Mathematica
Table[ Product[k + Prime[k], {k, n}], {n, 17}] (* Robert G. Wilson v, Apr 07 2004 *) FoldList[Times,Table[m+Prime[m],{m,20}]] (* Harvey P. Dale, Jun 04 2023 *)
Extensions
More terms from Robert G. Wilson v, Apr 07 2004
Comments