|
| |
|
|
A143134
|
|
E.g.f. satisfies: A(x) = x + sin( A(x) )^2 with A(0)=0.
|
|
2
| |
|
|
1, 2, 12, 112, 1440, 23552, 467712, 10926592, 293544960, 8914583552, 301957742592, 11285975498752, 461367611228160, 20477098870833152, 980591931131953152, 50393637174029320192, 2766350676943951626240
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| Radius of convergence of A(x) is r = Pi/4 - 1/2, with A(r) = Pi/4.
|
|
|
FORMULA
| E.g.f.: A(x) = Series_Reversion( x - sin(x)^2 ).
E.g.f. derivative: A'(x) = 1/(1 - 2*sqrt(A(x)-x)*sqrt(1+x-A(x))); thus A'(x) = 1/(1 - sin(2*A(x))).
Let f(x) = 1/(1-sin(2*x)). Then a(n) = (f(x)*d/dx)^(n-1) f(x) evaluated at x = 0. - Peter Bala, Oct 12 2011
|
|
|
EXAMPLE
| A(x) = x + 2*x^2/2! + 12*x^3/3! + 112*x^4/4! + 1440*x^5/5! +...
sin(A(x)) = G(x) is the e.g.f. of A143135:
G(x) = x + 2*x^2/2! + 11*x^3/3! + 100*x^4/4! + 1261*x^5/5! +...
G(x)^2 = 2*x^2/2! + 12*x^3/3! + 112*x^4/4! + 1440*x^5/5! +...
|
|
|
PROG
| (PARI) {a(n)=local(A=x); for(i=0, n, A=x + sin(A)^2); n!*polcoeff(A, n)}
(PARI) {a(n)=n!*polcoeff(serreverse(x-sin(x+x*O(x^n))^2), n)}
|
|
|
CROSSREFS
| Cf. A143135, A143136.
Sequence in context: A199045 A009232 A124213 * A185190 A091481 A053312
Adjacent sequences: A143131 A143132 A143133 * A143135 A143136 A143137
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Paul D. Hanna (pauldhanna(AT)juno.com), Jul 27 2008
|
| |
|
|