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 A202689 #34 Sep 08 2022 08:46:01 %S A202689 1,1,9,270,18900,2551500,589396500,214540326000,115851776040000, %T A202689 88626608670600000,92614806060777000000,128364121200236922000000, %U A202689 230285233433225038068000000,523898906060586961604700000000,1485253398681764036149324500000000 %N A202689 a(n) = (2n)! * (n+1)! / 2^(2n). %C A202689 a(n) is always an integer since a(n+1)/a(n) = n^3 + 7/2*n^2 + 7/2*n + 1 which is always an integer. [_D. S. McNeil_, Dec 22 2011] %C A202689 To further follow the above comment from _D. S. McNeil_: a(n+1)/a(n) is given in A002414. [_Alexander R. Povolotsky_, Dec 23 2011] %H A202689 Vincenzo Librandi, <a href="/A202689/b202689.txt">Table of n, a(n) for n = 0..100</a> %H A202689 T. Piezas, <a href="http://sites.google.com/site/piezas001/004">Notes and conjectures on properties of polynomials, arising in "Construction Of Binomial Sums For π And Polylogarithmic Constants Inspired by BBP Formulas"</a> (by Boris Gourévitch, Jesús Guillera Goyanes) and also relevant to further unpublished follow-up work by J. Cullen, T. Piezas, J. Guillera, and B. Gourevitch. %H A202689 <a href="/index/Di#divseq">Index to divisibility sequences</a> %F A202689 a(n) = (2n)!(n+1)! / 2^(2n). %F A202689 a(n+1) = a(n)*(n^3 + 7/2*n^2 + 7/2*n + 1). %F A202689 a(n+1) = a(n)*A002414(n+1) for n >= 0. %t A202689 Table[(2n)!(n+1)!/2^(2n),{n,0,20}] (* _Vincenzo Librandi_, Feb 09 2012 *) %o A202689 (PARI) a(n)=(2*n)!*(n+1)!>>(2*n) \\ _Charles R Greathouse IV_, Dec 23 2011 %o A202689 (Magma) [Factorial(2*n)*Factorial(n+1)/2^(2*n): n in [0..15]]; // _Vincenzo Librandi_, Feb 09 2012 %Y A202689 Cf. A002414. %K A202689 nonn,easy %O A202689 0,3 %A A202689 _Alexander R. Povolotsky_, Dec 22 2011