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!)
A214767 G.f. satisfies: A(x) = 1/A(-x*A(x)^7). 8
1, 2, 16, 144, 1280, 12416, 156288, 2445952, 39005696, 569584128, 7551139840, 94905663488, 1200235880448, 15657039026176, 204235121909760, 2589347043356672, 34080849916796928, 554466780012625920, 11679936697324273664, 269604415927633805312, 6025264829519275556864 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Compare g.f. to: G(x) = 1/G(-x*G(x)^7) when G(x) = 1 + x*G(x)^4 (A002293).
An infinite number of functions G(x) satisfy (*) G(x) = 1/G(-x*G(x)^7); for example, (*) is satisfied by G(x) = F(m*x) = 1 + m*x*F(m*x)^4 for all m, where F(x) is the g.f. of A002293.
LINKS
FORMULA
The g.f. of this sequence is the limit of the recurrence:
(*) G_{n+1}(x) = (G_n(x) + 1/G_n(-x*G_n(x)^7))/2 starting at G_0(x) = 1+2*x.
EXAMPLE
G.f.: A(x) = 1 + 2*x + 16*x^2 + 144*x^3 + 1280*x^4 + 12416*x^5 + 156288*x^6 +...
A(x)^4 = 1 + 8*x + 88*x^2 + 992*x^3 + 10896*x^4 + 121600*x^5 + 1492480*x^6 +...
A(x)^7 = 1 + 14*x + 196*x^2 + 2632*x^3 + 33712*x^4 + 424032*x^5 + 5484864*x^6 +...
PROG
(PARI) {a(n)=local(A=1+2*x); for(i=0, n, A=(A+1/subst(A, x, -x*A^7+x*O(x^n)))/2); polcoeff(A, n)}
for(n=0, 31, print1(a(n), ", "))
CROSSREFS
Sequence in context: A365526 A199565 A003768 * A300412 A333727 A024915
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 29 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 20 05:07 EDT 2024. Contains 372703 sequences. (Running on oeis4.)