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!)
A193206 G.f. satisfies: A(A(x)) = Sum_{n>=1} a(n)*x^n * (Sum_{k>=0} C(n+k-1,k)^2*x^k), where g.f. A(x) = Sum_{n>=1} a(n)*x^n. 1
1, 1, 3, 21, 293, 7025, 257973, 13401901, 932658707, 83605059701, 9373165053231, 1284252646176937, 211069744296165851, 40975307787528699929, 9274936424952726229667, 2420958940356091360967253, 721771327240539119577124369 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f. satisfies: A(A(x)) = Sum_{n>=1} a(n)*x^n * (Sum_{k=0..n-1} C(n-1,k)^2*x^k)/(1-x)^(2*n-1).
EXAMPLE
G.f.: A(x) = x + x^2 + 3*x^3 + 21*x^4 + 293*x^5 + 7025*x^6 +...
where
A(A(x)) = x/(1-x) + x^2*(1+x)/(1-x)^3 + 3*x^3*(1+4*x+x^2)/(1-x)^5 + 21*x^4*(1+9*x+9*x^2+x^3)/(1-x)^7 + 293*x^5*(1+16*x+36*x^2+16*x^3+x^4)/(1-x)^9 + 7025*x^6*(1+25*x+100*x^2+100*x^3+25*x^4+x^5)/(1-x)^11 +...
Explicitly,
A(A(x)) = x + 2*x^2 + 8*x^3 + 58*x^4 + 754*x^5 + 16776*x^6 + 585910*x^7 +...
PROG
(PARI) {a(n)=local(A=[1], F=x, G=x); for(i=1, n, A=concat(A, 0); F=x*Ser(A);
G=sum(m=1, #A-1, A[m]*x^m*sum(k=0, n, binomial(m+k-1, k)^2*x^k) +x*O(x^#A));
A[#A]=Vec(G)[#A]-Vec(subst(F, x, F))[#A]); if(n<1, 0, A[n])}
CROSSREFS
Cf. A193205.
Sequence in context: A222035 A361214 A171201 * A055555 A208731 A158888
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 19 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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)