A203700 v(n+1)/v(n), where v=A203699.
3, 49, 7581, 7116564, 53384011821, 2691938356606629, 974129194408249269936, 2421523335222305362745057025, 41813273584290579636523734161020881, 4964034317033092618070068384710502904318976
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