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.

A278868 Second series of Hankel determinants based on hyperfactorial/4.

Original entry on oeis.org

1, 1, 6183, 5772211367657472, 76148812142946816440318638031477145600000, 3940613226283843476344831941863494501303228636304800836707599745608602091520000000000
Offset: 0

Views

Author

Karol A. Penson, Nov 29 2016

Keywords

Comments

It would be useful to know the formula for this sequence.

Crossrefs

Programs

  • Maple
    a:= n-> LinearAlgebra[Determinant](Matrix(n, (i, j)->
            (t-> mul(k^k, k=0..t)/4)(i+j))):
    seq(a(n), n=0..6);  # Alois P. Heinz, Nov 29 2016
  • Mathematica
    Table[Det[Table[Hyperfactorial[i + j]/4, {i, n}, {j, n}]], {n, 6}]