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.

A108078 Determinant of a Hankel matrix with factorial elements.

Original entry on oeis.org

1, 2, 12, 576, 414720, 7166361600, 4334215495680000, 125824009525788672000000, 230121443546659694208614400000000, 33669808475874225917238947767910400000000000, 487707458060712424140716248549520230160793600000000000000
Offset: 0

Views

Author

Paul Max Payton, Jun 03 2005

Keywords

Comments

The term (n=1) is a degenerate case, a matrix with single element 2. This sequence involves products of binomial coefficients and is related to the superfactorial function.

References

  • M. J. C. Gover, "The Explicit Inverse of Factorial Hankel Matrices", Department of Mathematics, University of Bradford, 1993

Crossrefs

Programs

  • MATLAB
    % the sequence is easily made by:
    for i=1:n det(gallery('ipjfact',i,0)) end
    % or, more explicitly, by:
    d = 1; for i=1:n-1 d = d*factorial(i+1)*factorial(n-i); end d = d*factorial(n+1);
  • Maple
    with(LinearAlgebra):
    a:= n-> Determinant(Matrix(n, (i,j)->(i+j)!)):
    seq(a(n), n=0..10);  # Alois P. Heinz, Dec 05 2015
    # second Maple program:
    a:= n-> (n+1)! * mul((i+1)!*(n-i)!, i=1..n-1):
    seq(a(n), n=0..10);  # Alois P. Heinz, Dec 05 2015
  • Mathematica
    A108078[n_]:=Det[Table[(i+j)!,{i,1,n},{j,1,n}]]; Array[A108078, 20] (* Enrique Pérez Herrero, May 20 2011 *)
    Table[BarnesG[n + 1] BarnesG[n + 3], {n, 20}] (* Jan Mangaldan, May 22 2016 *)

Formula

a(n) = (n+1)! * Product_{i=1..n-1} (i+1)! * (n-i)!.
a(n) = A059332(n)*(n+1)!.
a(n) ~ n^(n^2 + 2*n + 11/6) * 2^(n+1) * Pi^(n+1) / (A^2 * exp(3*n^2/2 + 2*n - 1/6)), where A = A074962 is the Glaisher-Kinkelin constant. - Vaclav Kotesovec, Apr 16 2016
a(n) = G(n+1) * G(n+3), where G(n) is the Barnes G function. - Jan Mangaldan, May 22 2016

Extensions

a(0)=1 prepended and some terms corrected by Alois P. Heinz, Dec 05 2015