login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A193353
G.f. satisfies: A(x) = Sum_{n>=0} x^n * Product_{k=1..n} A(k*x)/(1+k*x).
0
1, 1, 1, 2, 7, 30, 197, 1770, 22536, 409456, 10541949, 387914810, 20362048664, 1525681168956, 163330533908217, 24973901010606886, 5456672750531017964, 1704092792275195175172, 760753610853139920737328, 485646261179496433286709024
OFFSET
0,4
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 7*x^4 + 30*x^5 + 197*x^6 + 1770*x^7 +...
where
A(x) = 1 + x*A(x)/(1+x) + x^2*A(x)*A(2*x)/((1+x)*(1+2*x)) + x^3*A(x)*A(2*x)*A(3*x)/((1+x)*(1+2*x)*(1+3*x)) +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=sum(m=0, n, x^m*prod(k=1, m, subst(A, x, k*x)/(1+k*x+x*O(x^n))))); polcoeff(A, n)}
CROSSREFS
Sequence in context: A020045 A020135 A249474 * A102158 A191073 A049576
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 23 2011
STATUS
approved