The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A229811 G.f. A(x) satisfies: A(x) = x + B(x)*C(x), where B(x) = x + 2*C(x)*A(x) and C(x) = x + 3*B(x)*A(x). 3
1, 1, 5, 23, 121, 673, 3953, 23891, 148321, 938257, 6031565, 39273839, 258529513, 1717533025, 11501168105, 77546905595, 526026614209, 3587296445473, 24580453618709, 169145840067335, 1168420570513177, 8099287225541473, 56320768883163425, 392777334265548323 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Vaclav Kotesovec, Recurrence (of order 9)
FORMULA
G.f. A = A(x) satisfies:
(1) A = x + x^2*(1+2*A)*(1+3*A)/(1-6*A^2)^2.
(2) A = x*(1+B)/(1-3*B^2) where B = x*(1+2*A)/(1-6*A^2) is the g.f. of A229812.
(3) A = x*(1+C)/(1-2*C^2) where C = x*(1+3*A)/(1-6*A^2) is the g.f. of A229813.
The g.f.s A = A(x) (A229811), B = B(x) (A229812), C = C(x) (A229813), satisfy:
A*B*C = (A^2 - x*A) = (B^2 - x*B)/2 = (C^2 - x*C)/3.
a(n) ~ c*d^n/n^(3/2), where d = 7.438049365405038364... is the root of the equation -9 - 114*d - 442*d^2 - 792*d^3 - 660*d^4 - 432*d^5 - 192*d^6 - 24*d^7 + 8*d^8 = 0 and c = 0.0554110388537150696008515327183214457017... - Vaclav Kotesovec, Sep 30 2013
EXAMPLE
G.f.: A(x) = x + x^2 + 5*x^3 + 23*x^4 + 121*x^5 + 673*x^6 + 3953*x^7 +...
Related series:
B(x) = x + 2*x^2 + 8*x^3 + 34*x^4 + 184*x^5 + 1010*x^6 + 5936*x^7 +...
C(x) = x + 3*x^2 + 9*x^3 + 45*x^4 + 225*x^5 + 1275*x^6 + 7389*x^7 +...
where A(x) = x + B(x)*C(x).
(A(x)^2 - x*A(x)) = A(x)*B(x)*C(x) = x^3 + 6*x^4 + 33*x^5 + 192*x^6 + 1145*x^7 + 7038*x^8 + 44093*x^9 + 281232*x^10 + 1818513*x^11 + 11899830*x^12 +...
PROG
(PARI) {a(n)=local(A=x+x^2, B=x+2*x^2, C=x+3*x^2); for(i=1, n, A=x+B*C+x*O(x^n); B=x+2*A*C+x*O(x^n); C=x+3*A*B+x*O(x^n)); polcoeff(A, n)}
for(n=1, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=x); for(i=1, n, A=x+x^2*(1+2*A)*(1+3*A)/(1-6*A^2 +x*O(x^n))^2); polcoeff(A, n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
Cf. A229812 (B(x)), A229813 (C(x)).
Sequence in context: A351756 A033312 A151881 * A359915 A362568 A121636
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 30 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 May 28 01:34 EDT 2024. Contains 372900 sequences. (Running on oeis4.)