OFFSET
0,5
COMMENTS
This should be the h^* vectors of some reflexive polytopes.
FORMULA
E.g.f.: (s-1)/(s-exp((s-1)*x))*exp(s*x*(s-1)/(s-exp((s-1)*x))).
EXAMPLE
Triangle begins:
[1],
[1, 1],
[1, 5, 1],
[1, 16, 16, 1],
[1, 43, 121, 43, 1],
[1, 106, 666, 666, 106, 1]
...
PROG
(SageMath)
Bs = PolynomialRing(QQ, 's')
s = Bs.gen()
La = LazyPowerSeriesRing(Bs, 'u')
u = La.gen()
f = (s-1)/(s-exp((s-1)*u))*exp(s*u*(s-1)/(s-exp((s-1)*u)))
[list(f[n] * factorial(n)) for n in range(9)]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
F. Chapoton, Oct 15 2025
STATUS
approved
