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!)
A307411 G.f. A(x) satisfies: A(x) = 1 + x*A(x)*(1 + 2*x*A(x))/(1 - x*A(x) - x^2*A(x)^2). 4
1, 1, 4, 14, 60, 267, 1254, 6071, 30156, 152714, 785682, 4094752, 21573258, 114709363, 614777462, 3317589966, 18011350796, 98307220409, 539121535194, 2969177051678, 16415395615190, 91070109305056, 506843759000184, 2828968117483929, 15831944500607010, 88818114923080102 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 + Sum_{k>=1} Lucas(k)*x^k*A(x)^k, where Lucas = A000204.
G.f.: A(x) = (1/x)*Series_Reversion(x*(1 - x - x^2)/(1 + x^2)).
MATHEMATICA
terms = 25; A[_] = 0; Do[A[x_] = 1 + x A[x] (1 + 2 x A[x])/(1 - x A[x] - x^2 A[x]^2) + O[x]^(terms + 1) // Normal, {terms + 1}]; CoefficientList[A[x], x]
terms = 26; A[_] = 0; Do[A[x_] = 1 + Sum[LucasL[k] x^k A[x]^k, {k, 1, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
terms = 26; CoefficientList[1/x InverseSeries[Series[x (1 - x - x^2)/(1 + x^2), {x, 0, terms}], x], x]
CROSSREFS
Sequence in context: A149493 A299926 A307399 * A349018 A259104 A082033
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 07 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 July 19 14:58 EDT 2024. Contains 374410 sequences. (Running on oeis4.)