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.

A174827 Hankel transform of A098278.

Original entry on oeis.org

1, 2, 192, 4976640, 115579079884800, 6039552457237856256000000, 1499708022491968274577374576640000000000, 3321055547746756031053448740122923472047308800000000000000
Offset: 0

Views

Author

Paul Barry, Mar 30 2010

Keywords

Crossrefs

Programs

  • Maple
    A174827:=n->mul( ((k+1)*(2*k+1)*(2*k+2)*floor((2*k+3)/2))^(n-k), k=0..n): seq(A174827(n), n=0..7); # Wesley Ivan Hurt, Sep 13 2014
  • Mathematica
    Table[Product[((k + 1) (2 k + 1) (2 k + 2) Floor[(2 k + 3)/2])^(n - k), {k, 0, n}], {n, 0, 7}] (* Wesley Ivan Hurt, Sep 13 2014 *)

Formula

a(n) = Product{k=0..n, ((k+1)*(2*k+1)*(2*k+2)*floor((2*k+3)/2))^(n-k)}.
A000178(n) divides a(n). - Peter Luschny, Sep 14 2014
a(n) ~ 2^(n*(n+3) + 41/24) * n^(2*n^2 + 7*n/2 + 31/24) * Pi^(3*(n+1)/2) / (A^(5/2) * exp(3*n^2 + 7*n/2 - 5/24)), where A is the Glaisher-Kinkelin constant A074962. - Vaclav Kotesovec, Feb 24 2019