A203743 v(n+1)/v(n), where v=A203742.
3, 49, 3211, 1836471, 5601269268, 126224789371821, 18172730429870356071, 18165994225387223595663024, 122253429876903823048050870627075, 5642245751352209334312275747406397652667
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