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!)
A129086 Coefficients of solution to A(x) = (1 + x*A(x)^2) * (1-3*x) / (1-2*x)^2. 0
1, 2, 5, 14, 42, 133, 443, 1552, 5716, 22068, 88830, 370209, 1585841, 6936459, 30813483, 138445492, 627256282, 2859652414, 13099023380, 60225071992, 277729496928, 1283986487874, 5948991719082, 27616185153765 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Hankel transform of a(n) is A006720(n+3).
G.f. A(x) satisfies 0 = f(x, A(x)) where f(u, v) = (v-1) + (3 - 4*v - v^2) * u + (4*v + 3*v^2) * u^2.
Let s(n)= A006769(n). Then 0 = f( s(n+4) * s(n+6) / ( s(n) * s(n+10)), -s(n) * s(n+7) / ( s(n+3) * s(n+4)) ) where f(u, v) = (v-1) + (3 - 4*v - v^2) * u + (4*v + 3*v^2) * u^2.
G.f.: ((1 - 2*x)^2 - sqrt((1 - 4*x) * (1 - 8*x + 16*x^2 - 4*x^3) )) / (2*x * (1 - 3*x)).
a(n) ~ sqrt((s^2 - 6*r - 3) / (Pi*(1 - 5*r + 6*r^2))) / (2*n^(3/2) * r^n), where r = 0.2039479457772143062225326263671960106786457685654... and s = 2.214319743377535187415497700848580488907919637219... are real roots of the system of equations 1 = r*s^2, 2*(1 - 3*r)*r*s = (1 - 2*r)^2. - Vaclav Kotesovec, Nov 27 2017
D-finite with recurrence (n+1)*a(n) +3*(-5*n+1)*a(n-1) +6*(14*n-19)*a(n-2) +2*(-106*n+263)*a(n-3) +2*(110*n-397)*a(n-4) +48*(-n+5)*a(n-5)=0. - R. J. Mathar, Sep 24 2021
MATHEMATICA
CoefficientList[Series[((1 - 2*x)^2 - Sqrt[(1 - 4*x) * (1 - 8*x + 16*x^2 - 4*x^3) ]) / (2*x * (1 - 3*x)), {x, 0, 25}], x] (* Vaclav Kotesovec, Nov 27 2017 *)
PROG
(PARI) {a(n) = if( n<0, 0, polcoeff( ((1 - 2*x)^2 - sqrt((1 - 4*x) * (1 - 8*x + 16*x^2 - 4*x^3) + x^2 * O(x^n))) / (2*x * (1 - 3*x)), n))};
(PARI) {a(n) = my(A); if( n<0, 0, A = 1 + O(x); for(k= 1, n, A = (1 + x*A^2) * (1 - 3*x) / (1 - 2*x)^2 ); polcoeff(A, n))};
CROSSREFS
Sequence in context: A308329 A202061 A346660 * A035052 A148330 A149876
KEYWORD
nonn
AUTHOR
Michael Somos, Mar 29 2007
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 09:38 EDT 2024. Contains 371935 sequences. (Running on oeis4.)