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!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
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

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 28 14:21 EDT 2024. Contains 371254 sequences. (Running on oeis4.)