A342811 Volume of the permutohedron obtained from the coordinates 1, 2, 4, ..., 2^(n-1), multiplied by (n-1)!.
1, 13, 1009, 354161, 496376001, 2632501072321, 52080136110870785, 3872046158193220660993, 1099175272489026844687825921, 1210008580962784935280673680079873, 5225407816779297641534116390319222362113
Offset: 2
Keywords
Links
- Alexander Postnikov, Permutohedra, Associahedra, and Beyond, International Mathematics Research Notices, 2009, 1026-1106; arXiv:math/0507163 [math.CO], 2005. See Example 5.5.
Programs
-
Mathematica
a[n_] := Sum[(p.(2^Range[0, n-1]))^(n-1) / Times @@ Differences[p], {p, Permutations@Range@n}]; Table[a[n], {n, 2, 8}]
Comments