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 A203525 #11 Nov 26 2021 06:38:51 %S A203525 1,15,504,17280,1108800,59304960,5613753600,944393748480, %T A203525 83547459072000,18057977118720000,2985679725841612800, %U A203525 366843845931171840000,71218197373471948800000,22048551163610844364800000,7384118713322835982417920000 %N A203525 a(n) = v(n+1)/(8*v(n)), where v=A203524. %C A203525 See A093883 for a discussion and guide to related sequences. %t A203525 f[j_] := Prime[j + 1]; z = 17; %t A203525 v[n_] := Product[Product[f[k] + f[j], {j, 1, k - 1}], {k, 2, n}] %t A203525 d[n_] := Product[(i - 1)!, {i, 1, n}] (* A000178 *) %t A203525 Table[v[n], {n, 1, z}] (* A203524 *) %t A203525 Table[v[n + 1]/(8 v[n]), {n, 1, z - 1}] (* A203525 *) %t A203525 Table[v[n]/d[n], {n, 1, 20}] (* A203526 *) %Y A203525 Cf. A000040, A093883, A203315, A203524, A203526. %K A203525 nonn,easy %O A203525 1,2 %A A203525 _Clark Kimberling_, Jan 03 2012 %E A203525 Definition corrected by _Georg Fischer_, Nov 26 2021