The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A203521 a(n) = Product_{1 <= i < j <= n} (prime(i) + prime(j)). 5
1, 1, 5, 280, 302400, 15850598400, 32867800842240000, 5539460271229108224000000, 55190934927547677562078494720000000, 61965661927377302817151474643396198400000000000, 14512955968670787590604912803260278557019929051136000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Each term divides its successor, as in A203511. It is conjectured that each term is divisible by the corresponding superfactorial, A000178(n). See A093883 for a guide to related sequences.
LINKS
EXAMPLE
a(1) = 1.
a(2) = 2 + 3 = 5.
a(3) = (2+3)(2+5)(3+5) = 280.
MAPLE
a:= n-> mul(mul(ithprime(i)+ithprime(j), i=1..j-1), j=2..n):
seq(a(n), n=0..10); # Alois P. Heinz, Jul 23 2017
MATHEMATICA
f[j_] := Prime[j]; z = 15;
v[n_] := Product[Product[f[k] + f[j], {j, 1, k - 1}], {k, 2, n}]
d[n_] := Product[(i - 1)!, {i, 1, n}] (* A000178 *)
Table[v[n], {n, 1, z}] (* A203521 *)
Table[v[n + 1]/v[n], {n, 1, z - 1}] (* A203522 *)
Table[v[n]/d[n], {n, 1, 20}] (* A203523 *)
CROSSREFS
Sequence in context: A368754 A057209 A216662 * A276556 A283569 A252173
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 03 2012
EXTENSIONS
Name edited by Alois P. Heinz, Jul 23 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 10 17:45 EDT 2024. Contains 373279 sequences. (Running on oeis4.)