login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A224885 G.f.: A(x) = 1+x + Sum_{n>=2} Product_{k=1..n} (A(x)^k - 1). 1
1, 1, 2, 15, 143, 1552, 18282, 228174, 2976534, 40256580, 561755676, 8066942027, 119104886610, 1809118800204, 28327453520403, 458854209551159, 7727223037965079, 136130623466875012, 2526349854311842166, 49724570281877830993, 1043539871136604436514, 23417606258398828845811 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
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
Sequence in context: A288950 A005415 A219868 * A253571 A111686 A001854
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 22 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 19 03:33 EDT 2024. Contains 370952 sequences. (Running on oeis4.)