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.

A086647 Number of monomials in expansion of permanent of an n X n Toeplitz matrix [t(|i-j|) ] in terms of its entries.

Original entry on oeis.org

1, 2, 4, 12, 36, 128, 460, 1750, 6551, 25108, 94977, 363533, 1378573, 5273561
Offset: 1

Views

Author

Yuval Dekel (dekelyuval(AT)hotmail.com), Jul 26 2003

Keywords

Crossrefs

Programs

  • Maple
    with(LinearAlgebra): f:=n->nops([coeffs(Permanent(Matrix(n, (i, j) -> a[abs(i-j)])))]): [seq(f(n), n=1..12)]; # Vaclav Kotesovec, Mar 29 2019
  • Mathematica
    Permanent[m_List] := With[{v = Array[x, Length@m]}, Coefficient[Times @@ (m . v), Times @@ v]]; ; f[n_] := Length@Expand@Permanent@Table[t[Abs[i - j]], {i, n}, {j, n}]; Array[f, 11] (* Robert G. Wilson v *)

Extensions

More terms from Robert G. Wilson v, Sep 22 2006
a(12) from Vaclav Kotesovec, Mar 20 2019
a(13)-a(14) from Vaclav Kotesovec, Mar 29 2019