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!)
A307528 G.f. A(x) satisfies: A(x) = 1 + x^2*A(x)^2/(1 - x*A(x) - x^2*A(x)^2 - x^3*A(x)^3). 1
1, 0, 1, 1, 4, 9, 27, 76, 226, 680, 2078, 6441, 20153, 63684, 202732, 649930, 2095854, 6794684, 22131765, 72393439, 237703654, 783198068, 2588645047, 8580674778, 28517805357, 95009277576, 317242351135, 1061500510809, 3558683892258, 11952025977378, 40209157279701 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + Sum_{k>=2} A000073(k)*x^k*A(x)^k.
G.f.: A(x) = (1/x)*Series_Reversion(x*(1 - x - x^2 - x^3)/(1 - x - x^3)).
EXAMPLE
G.f.: A(x) = 1 + x^2 + x^3 + 4*x^4 + 9*x^5 + 27*x^6 + 76*x^7 + 226*x^8 + 680*x^9 + 2078*x^10 + ...
MATHEMATICA
terms = 31; CoefficientList[1/x InverseSeries[Series[x (1 - x - x^2 - x^3)/(1 - x - x^3), {x, 0, terms}], x], x]
terms = 30; A[_] = 0; Do[A[x_] = 1 + x^2 A[x]^2/(1 - x A[x] - x^2 A[x]^2 - x^3 A[x]^3) + O[x]^(terms + 1) // Normal, {terms + 1}]; CoefficientList[A[x], x]
terms = 31; t[n_] := t[n] = SeriesCoefficient[x^2/(1 - x - x^2 - x^3), {x, 0, n}]; A[_] = 0; Do[A[x_] = 1 + Sum[t[k] x^k A[x]^k, {k, 2, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
CROSSREFS
Sequence in context: A034527 A329155 A111962 * A365609 A198095 A256096
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 12 2019
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 10:49 EDT 2024. Contains 371935 sequences. (Running on oeis4.)