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.

Showing 1-1 of 1 results.

A184887 a(n) = (8^n/n!^2) * Product_{k=0..n-1} (16k+3)*(16k+5).

Original entry on oeis.org

1, 120, 95760, 110230400, 148976385600, 220389705801216, 345522083206128640, 564061275098462085120, 948680557056225919411200, 1632480132897839426558156800, 2860496988068910156792264671232
Offset: 0

Views

Author

Paul D. Hanna, Jan 25 2011

Keywords

Examples

			G.f.: A(x) = 1 + 120*x + 95760*x^2 + 110230400*x^3 +...
A(x)^2 = 1 + 240*x + 205920*x^2 + 243443200*x^3 +...+ A184888(n)*x^n +...
		

Crossrefs

Programs

  • Mathematica
    FullSimplify[Table[2^(11*n) * Gamma[n+3/16] * Gamma[n+5/16] / (Gamma[n+1]^2 * Gamma[3/16] * Gamma[5/16]), {n, 0, 15}]] (* Vaclav Kotesovec, Jul 03 2014 *)
  • PARI
    {a(n)=(8^n/n!^2)*prod(k=0,n-1,(16*k+3)*(16*k+5))}

Formula

Self-convolution yields Sum_{k=0..n} a(n-k)*a(k) = A184888(n) where: A184888(n) = C(2n,n) * (8^n/n!^2)*Product_{k=0..n-1} (8k+3)*(8k+5).
Showing 1-1 of 1 results.