OFFSET
0,3
LINKS
Yan X Zhang, Four Variations on Graded Posets, arXiv preprint arXiv:1508.00318 [math.CO], 2015. See Fig. 6.
FORMULA
Zhang (2015) gives e.g.f.
MAPLE
S := 1+x+x^2/(1-x-x^2) ;
Ex := subs(x=e^x-1, S) ;
taylor(%, x=0, 23) ;
subs(log(e)=1, %) ;
L := gfun[seriestolist](%) ;
for i from 1 to nops(L) do
printf("%d, ", op(i, L)*(i-1)!) ;
end do: # R. J. Mathar, May 11 2016
MATHEMATICA
terms = 20;
egf = (1 + x + x^2/(1 - x - x^2) /. x -> E^x - 1) + O[x]^terms;
CoefficientList[egf, x]*Range[0, terms-1]! (* Jean-François Alcover, Sep 14 2018 *)
Table[1 + Sum[k!*Fibonacci[k-1]*StirlingS2[n, k], {k, 1, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jun 05 2019 *)
PROG
(PARI) default(seriesprecision, 30); f = subst(1 + x + x^2/(1 - x - x^2), x, exp(x)-1); Vec(serlaplace(f)) \\ Michel Marcus, Sep 14 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 28 2016
STATUS
approved