OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..125
Hsien-Kuei Hwang, Emma Yu Jin, Asymptotics and statistics on Fishburn matrices and their generalizations, arXiv:1911.06690 [math.CO], 2019.
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 15*x^3 + 143*x^4 + 1552*x^5 + 18282*x^6 +...
where
A(x) = 1+x + (A(x)-1)*(A(x)^2-1) + (A(x)-1)*(A(x)^2-1)*(A(x)^3-1) + (A(x)-1)*(A(x)^2-1)*(A(x)^3-1)*(A(x)^4-1) + (A(x)-1)*(A(x)^2-1)*(A(x)^3-1)*(A(x)^4-1)*(A(x)^5-1) +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+x+sum(k=2, n, prod(j=1, k, A^j-1 +x*O(x^n)))); polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 22 2013
STATUS
approved