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!)
A221586 G.f. satisfies: A(x) = Sum_{n>=0} x^n * A(x)^(n*(n+1)/2) / Product_{k=1..n} (1 + x*A(x)^k). 2
1, 1, 1, 2, 5, 14, 43, 140, 478, 1695, 6205, 23356, 90135, 355960, 1436755, 5922799, 24929035, 107136291, 470281976, 2109608447, 9677546281, 45434467501, 218478232454, 1076855324959, 5443845581547, 28239060235110, 150346623540441, 821555490484095 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 5*x^4 + 14*x^5 + 43*x^6 + 140*x^7 +...
where
A(x) = 1 + x*A(x)/(1+x*A(x)) + x^2*A(x)^3/((1+x*A(x))*(1+x*A(x)^2)) + x^3*A(x)^6/((1+x*A(x))*(1+x*A(x)^2)*(1+x*A(x)^3)) + x^4*A(x)^10/((1+x*A(x))*(1+x*A(x)^2)*(1+x*A(x)^3)*(1+x*A(x)^4)) +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=sum(m=0, n, x^m*A^(m*(m+1)/2)/prod(k=1, m, 1+x*subst(A, x, x+x*O(x^n))^k))); polcoeff(A, n)}; \\ corrected by Georg Fischer, Jun 20 2022
CROSSREFS
Sequence in context: A213264 A029889 A307787 * A258312 A123020 A005317
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 20 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 April 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)