login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A203476
a(n) = v(n+1)/v(n), where v = A203475.
2
5, 130, 8500, 1051076, 211255200, 62840245000, 25959932960000, 14224928867370000, 9986120745657472000, 8740787543400204500000, 9333385482079885824000000, 11942338721669302523305000000, 18038821394494464638896640000000
OFFSET
1,1
LINKS
FORMULA
a(n) ~ 2^(n + 1/2) * exp(Pi*(n+1)/2 - 2*n) * n^(2*n). - Vaclav Kotesovec, Jan 25 2019
a(n) = Product_{j=1..n} ((n+1)^2 + j^2). - G. C. Greubel, Aug 28 2023
MATHEMATICA
(* First program *)
f[j_]:= j^2; z = 15;
v[n_]:= Product[Product[f[k] + f[j], {j, k-1}], {k, 2, n}]
Table[v[n], {n, z}] (* A203475 *)
Table[v[n+1]/v[n], {n, z-1}] (* A203476 *)
(* Second program *)
Table[Product[j^2 +(n+1)^2 , {j, n}], {n, 20}] (* G. C. Greubel, Aug 28 2023 *)
PROG
(Magma) [(&*[(n+1)^2 + j^2: j in [1..n]]): n in [1..20]]; // G. C. Greubel, Aug 28 2023
(SageMath) [product(j^2+(n+1)^2 for j in range(1, n+1)) for n in range(1, 21)] # G. C. Greubel, Aug 28 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 02 2012
STATUS
approved