OFFSET
0,2
COMMENTS
Compare with A158690.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..200
Hsien-Kuei Hwang, Emma Yu Jin, Asymptotics and statistics on Fishburn matrices and their generalizations, arXiv:1911.06690 [math.CO], 2019.
FORMULA
E.g.f.: Sum_{n>=0} exp((n+1)*t) * Product_{k = 1..n} (exp((2*k-1)*t) - 1) = exp(t) + exp(2*t)*(exp(t) - 1) + exp(3*t)*(exp(t) - 1)*(exp(3*t) - 1) + ... = 1 + 2*t + 12*t^2/2! + 200*t^3/3! + ...
Conjectural S-fraction expansion for the o.g.f.:
1/(1-2*x/(1-4*x/(1-16*x/(1-20*x/(1-...-2*n(3*n-2)*x/(1-2*n(3*n-1)*x/(1-...
a(n) ~ 2^(3*n + 2) * 3^(n + 1/2) * n^(2*n + 1/2) / (exp(2*n) * Pi^(2*n + 1/2)). - Vaclav Kotesovec, Oct 09 2023
MATHEMATICA
nmax = 20; CoefficientList[Series[Sum[(-1)^n*Exp[x*(n + 1)] * Product[ (1 - Exp[(2*k - 1)*x]), {k, 1, n}], {n, 0, nmax}], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Oct 09 2023 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter Bala, Mar 14 2012
STATUS
approved