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!)
A295808 G.f. A(x) satisfies: A(x)^3 = 1+x + x*(A(x)^4 + A(x)^8). 3
1, 1, 3, 17, 110, 783, 5908, 46433, 376029, 3115941, 26293410, 225166050, 1951877304, 17094430060, 151026790086, 1344405191931, 12046557221374, 108569555036541, 983512740523989, 8950335155129326, 81786796816686222, 750133309106091800, 6903286130025559800, 63724450582843480092, 589897018021520290940, 5474784437150040712036, 50932035767512193052753, 474865449870890392910894 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to: G(x)^3 = 1+x + x*(G(x)^2 + G(x)^4) holds when G(x) = (1 + x - sqrt(1 - 2*x - 3*x^2))/(2*x) is a g.f. of the Motzkin numbers (A001006).
LINKS
FORMULA
G.f. A(x) satisfies:
(1) A(x) = 1 + Series_Reversion( x/(1 + 3*x + 8*x^2 + 11*x^3 + 10*x^4 + 5*x^5 + x^6) ).
(2) F(A(x)) = x such that F(x) = -(1-x)/(1 - x + x^3 - x^5 + x^6).
(3) A(x) satisfies: A(x) = 1/A(-x*A(x)^5).
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 17*x^3 + 110*x^4 + 783*x^5 + 5908*x^6 + 46433*x^7 + 376029*x^8 + 3115941*x^9 + 26293410*x^10 + 225166050*x^11 + 1951877304*x^12 +...
such that A(x)^3 = 1+x + x*(A(x)^4 + A(x)^8).
RELATED SERIES.
A(x)^3 = 1 + 3*x + 12*x^2 + 70*x^3 + 468*x^4 + 3393*x^5 + 25932*x^6 + 205716*x^7 + 1677804*x^8 + 13980710*x^9 + 118505772*x^10 +...
A(x)^4 = 1 + 4*x + 18*x^2 + 108*x^3 + 735*x^4 + 5388*x^5 + 41496*x^6 + 331036*x^7 + 2711511*x^8 + 22670964*x^9 + 192695140*x^10 +...
A(x)^8 = 1 + 8*x + 52*x^2 + 360*x^3 + 2658*x^4 + 20544*x^5 + 164220*x^6 + 1346768*x^7 + 11269199*x^8 + 95834808*x^9 + 825905828*x^10 +...
PROG
(PARI) {a(n) = my(A=1+x); for(i=1, n, A = ((1+x) + x*A^4 + x*A^8 +x*O(x^n))^(1/3) ); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n) = my(A=1+x); A = 1 + serreverse( x/(1 + 3*x + 8*x^2 + 11*x^3 + 10*x^4 + 5*x^5 + x^6 +x*O(x^n)) ); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A212524 A103730 A074556 * A215048 A346921 A368639
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 27 2017
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 August 10 01:30 EDT 2024. Contains 375044 sequences. (Running on oeis4.)