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.

A204236 Permanent of the n-th principal submatrix of A204154.

Original entry on oeis.org

1, 11, 219, 8353, 501441, 43953387, 5289422019, 837277689897, 168675250704201, 42143281220724723, 12789052583333211963, 4633606346714879986017, 1975686665736618600155505, 979311369588813584600206491, 558412149326539306097214853299, 362948190926517939498607117046169
Offset: 1

Views

Author

Clark Kimberling, Jan 13 2012

Keywords

Crossrefs

Cf. A204154.

Programs

  • Mathematica
    f[i_, j_] := Max[2 i - j, 2 j - i];  (* A204154 *)
    m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]
    TableForm[m[6]] (* 6x6 principal submatrix *)
    Permanent[m_] :=
      With[{a = Array[x, Length[m]]},
       Coefficient[Times @@ (m.a), Times @@ a]];
    Table[Permanent[m[n]], {n, 1, 14}]    (* A204236 *)

Extensions

a(15)-a(16) from Pontus von Brömssen, Mar 03 2024