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!)
A213105 G.f. satisfies: A(x) = 1 + x/A(-x*A(x)^12)^6. 16
1, 1, 6, 57, 614, 7716, 104322, 1529385, 23689968, 385885521, 6531397090, 114147452526, 2045979734964, 37435147640010, 696431496524796, 13134442980269397, 250527556214516892, 4824098879117797749, 93639919777995946446, 1830133457257882605430 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare definition of g.f. to:
(1) B(x) = 1 + x/B(-x*B(x)) when B(x) = 1/(1-x).
(2) C(x) = 1 + x/C(-x*C(x)^3)^2 when C(x) = 1 + x*C(x)^2 (A000108).
(3) D(x) = 1 + x/D(-x*D(x)^5)^3 when D(x) = 1 + x*D(x)^3 (A001764).
(4) E(x) = 1 + x/E(-x*E(x)^7)^4 when E(x) = 1 + x*E(x)^4 (A002293).
(5) F(x) = 1 + x/F(-x*F(x)^9)^5 when F(x) = 1 + x*F(x)^5 (A002294).
(6) G(x) = 1 + x/G(-x*G(x)^11)^6 when G(x) = 1 + x*G(x)^6 (A002295).
LINKS
EXAMPLE
G.f.: A(x) = 1 + x + 6*x^2 + 57*x^3 + 614*x^4 + 7716*x^5 + 104322*x^6 +...
Related expansions:
A(x)^12 = 1 + 12*x + 138*x^2 + 1696*x^3 + 21723*x^4 + 292836*x^5 +...
A(-x*A(x)^12)^6 = 1 - 6*x - 21*x^2 - 146*x^3 - 1959*x^4 - 25056*x^5 -...
MATHEMATICA
m = 20; A[_] = 1; Do[A[x_] = 1 + x/A[-x A[x]^12]^6 + O[x]^m, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Nov 06 2019 *)
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A=1+x/subst(A^6, x, -x*subst(A^12, x, x+x*O(x^n))) ); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A332620 A371521 A246235 * A138414 A349363 A130565
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 05 2012
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 21 01:24 EDT 2024. Contains 372720 sequences. (Running on oeis4.)