A362968 Number of integral points in 2 * permutohedron of order n.
1, 3, 19, 201, 3081, 62683, 1598955, 49180113, 1773405649, 73410669171, 3432267261699, 178922825114905, 10291053760222041, 647436905815864011, 44229766376059342171, 3260749830852693615777, 258039101519624535653025
Offset: 1
Keywords
Links
- C. Bebeacua, T. Mansour, A. Postnikov, and S. Severini. On the X-rays of permutations, arXiv:math/0506334 [math.CO], 2005.
- Wikipedia, Permutohedron.
Programs
-
Maple
w := LambertW(-2*x): egf := exp(-w * (2 + w) / 4): ser := series(egf, x, 20): seq(n! * coeff(ser, x, n), n = 1..17); # Peter Luschny, Jun 19 2023
-
PARI
a362968(n) = my(x=y+O(y^(n+1))); n! * polcoef( exp(-lambertw(-2*x)/2 - lambertw(-2*x)^2/4), n );
Formula
a(n) = Sum_{k=0..n-1} A138464(n,k) * 2^k, which is the value of the Ehrhart polynomial of permutohedron at t = 2.
E.g.f.: exp(-W(-2*x)/2 - W(-2*x)^2/4), where W() is the Lambert function.
Comments