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.

A342812 Volume of the (n-1)-dimensional associahedron in the Loday realization, multiplied by (n-1)!.

Original entry on oeis.org

1, 1, 7, 142, 5895, 417201, 45046558, 6891812712, 1417730229765, 377158121463025
Offset: 1

Views

Author

Andrey Zabolotskiy, Mar 22 2021

Keywords

Comments

Here the volume is relative to the unit cell of the lattice which is the intersection of Z^n with the hyperplane spanning the polytope.

Crossrefs

Programs

  • Mathematica
    a[n_] := With[{npr = Subsets[Span @@ Range@n, {2}]}, Sum[With[{ip = Ordering@p}, Total[-p[[Table[Min@ip[[ij]], {ij, npr}]]]]^(n - 1)] / Times @@ Differences[p], {p, Permutations@Range@n}]];
    Table[a[n], {n, 8}]