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.
%I A203764 #7 Jan 14 2013 07:51:04 %S A203764 1,9,36,2401,21609,4112784,65804544,25344958401,633623960025, %T A203764 413815190632704,14897346862777344,14823103693846716801, %U A203764 726332080998489123249,1025131531800200888254464,65608418035212856848285696 %N A203764 v(n+1)/v(n), where v=A203763. %C A203764 See A093883 for a discussion and guide to related sequences. %t A203764 f[j_] := Floor[(j + 1)/2]; z = 16; %t A203764 u := Product[f[j]^2 - f[j] f[k] + f[k]^2, {j, 1, k - 1}] %t A203764 v[n_] := Product[u, {k, 2, n}] %t A203764 Table[v[n], {n, 1, z}] (* A203763 *) %t A203764 Table[v[n + 1]/v[n], {n, 1, z}] (* A203764 *) %t A203764 Table[Sqrt[v[n + 1]/v[n]], {n, 1, 20}] (* A203765 *) %K A203764 nonn %O A203764 1,2 %A A203764 _Clark Kimberling_, Jan 05 2012