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.

A019448 Number of monomials in expansion of determinant of an n X n Hankel matrix [ t(i+j) ] in terms of its entries.

Original entry on oeis.org

1, 1, 2, 5, 16, 58, 231, 1016, 4782, 23653, 121727, 648611, 3541871, 19713695
Offset: 0

Views

Author

Herbert S. Wilf

Keywords

Crossrefs

Programs

  • Maple
    with(linalg): A019448 := proc(n) local i, j, m; m := array(1..n, 1..n); for i from 1 to n do for j from 1 to n do m[i, j] := a[i+j] od od; nops([coeffs(det(m))]); end; # Jeffrey Shallit, Jun 08 2000
    with(LinearAlgebra): f:=n->nops([coeffs(Determinant(Matrix(n, (i, j) -> a[i+j] )))]): [seq(f(n), n=0..10)]; # Vaclav Kotesovec, Mar 29 2019
  • Mathematica
    f[n_] := Length@ Expand@ Det@ Table[t[i + j], {i, n}, {j, n}]; Do[ Print@ f@n, {n, 11}] (* Robert G. Wilson v, Sep 17 2006 *)

Extensions

a(8)-a(9) from Jeffrey Shallit, Jun 08 2000
a(10)-a(11) from Robert G. Wilson v, Sep 17 2006
a(12) from Roman Pearce, Aug 30 2014
a(13) from Vaclav Kotesovec, Mar 20 2019
a(0)=1 prepended by Alois P. Heinz, Jan 08 2025