cp's OEIS Frontend

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.

A202689 a(n) = (2n)! * (n+1)! / 2^(2n).

Original entry on oeis.org

1, 1, 9, 270, 18900, 2551500, 589396500, 214540326000, 115851776040000, 88626608670600000, 92614806060777000000, 128364121200236922000000, 230285233433225038068000000, 523898906060586961604700000000, 1485253398681764036149324500000000
Offset: 0

Views

Author

Keywords

Comments

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]
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]

Crossrefs

Cf. A002414.

Programs

Formula

a(n) = (2n)!(n+1)! / 2^(2n).
a(n+1) = a(n)*(n^3 + 7/2*n^2 + 7/2*n + 1).
a(n+1) = a(n)*A002414(n+1) for n >= 0.