A203760 v(n+1)/v(n), where v=A203759.
3, 49, 588, 61009, 1647243, 473323536, 22719529728, 13058834917401, 979412618805075, 949149594515775744, 102508156207703780352, 150861990726485797358601, 22176712636793412211714347
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
a(4) = (1+2)*(1+3)*(1+4)*(2+3)*(2+4)*(3+4) = 12600.
a:= n-> mul(mul(i+j, i=1..j-1), j=2..n): seq(a(n), n=1..12); # Alois P. Heinz, Jul 23 2017
f[n_] := Product[(j + k), {k, 2, n}, {j, 1, k - 1}]; Array[f, 10] (* Robert G. Wilson v, Jan 08 2013 *)
A093883(n)=prod(i=1,n,(2*i-1)!/i!) \\ M. F. Hasler, Nov 02 2012
Comments