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.

A367567 a(n) = Product_{k=0..n} (3*k)! / k!^3.

Original entry on oeis.org

1, 6, 540, 907200, 31434480000, 23788231346880000, 408042767492495815680000, 162838835029822082951032012800000, 1541352909587869227178909850805190656000000, 351233376660297011570511252132131832794456064000000000, 1949695346852822356399298814748829537555898997004605685760000000000
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 23 2023

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Product[(3*k)!/k!^3, {k, 0, n}], {n, 0, 10}]
    Table[Product[Binomial[3*k,k] * Binomial[2*k,k], {k, 0, n}], {n, 0, 10}]

Formula

a(n) = Product_{k=0..n} binomial(3*k,k) * binomial(2*k,k).
a(n) = A268504(n) / A000178(n)^3.
a(n) = A268504(n) / A061719(n).
a(n) = A007685(n) * A268196(n).
a(n) ~ A^(8/3) * Gamma(1/3)^(1/3) * 3^(3*n^2/2 + 2*n + 11/36) * exp(n - 2/9) / (n^(n + 13/18) * (2*Pi)^(n + 7/6)), where A is the Glaisher-Kinkelin constant A074962.