A226758
E.g.f.: A(x) = x + sin(A(x)^2).
Original entry on oeis.org
1, 2, 12, 120, 1680, 30120, 658560, 16994880, 505612800, 17037851040, 641393786880, 26678131159680, 1215016298496000, 60135628841608320, 3213908573331456000, 184463573184501811200, 11316253482729190195200, 738934748606732911833600, 51171600229826941786521600
Offset: 1
E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 120*x^4/4! + 1680*x^5/4! +...
where A(x - sin(x^2)) = x and A(x) = x + sin(A(x)^2).
Series expansions:
A(x) = x + sin(x^2) + d/dx sin(x^2)^2/2! + d^2/dx^2 sin(x^2)^3/3! + d^3/dx^3 sin(x^2)^4/4! +...
log(A(x)/x) = sin(x^2)/x + d/dx (sin(x^2)^2/x)/2! + d^2/dx^2 (sin(x^2)^3/x)/3! + d^3/dx^3 (sin(x^2)^4/x)/4! +...
-
Rest[CoefficientList[InverseSeries[Series[x - Sin[x^2],{x,0,20}],x],x] * Range[0,20]!] (* Vaclav Kotesovec, Jan 23 2014 *)
-
{a(n)=n!*polcoeff(serreverse(x-sin(x^2+x^2*O(x^n))), n)}
for(n=1, 25, print1(a(n), ", "))
-
{Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x); A=x+sum(m=1, n, Dx(m-1, sin(x^2+x*O(x^n))^m)/m!); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
-
{Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x+x^2+x*O(x^n)); A=x*exp(sum(m=1, n, Dx(m-1, sin(x^2+x*O(x^n))^m/x)/m!)+x*O(x^n)); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
A226759
E.g.f.: A(x) = x + tan(A(x)^2).
Original entry on oeis.org
1, 2, 12, 120, 1680, 30480, 678720, 17902080, 545529600, 18854519040, 728651911680, 31133305082880, 1457247407616000, 74151941277173760, 4075563460173004800, 240617659203765043200, 15186689706926068531200, 1020415122190724766105600, 72722026905140804154163200
Offset: 1
E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 120*x^4/4! + 1680*x^5/4! +...
where A(x - tan(x^2)) = x and A(x) = x + tan(A(x)^2).
Series expansions:
A(x) = x + tan(x^2) + d/dx tan(x^2)^2/2! + d^2/dx^2 tan(x^2)^3/3! + d^3/dx^3 tan(x^2)^4/4! +...
log(A(x)/x) = tan(x^2)/x + d/dx (tan(x^2)^2/x)/2! + d^2/dx^2 (tan(x^2)^3/x)/3! + d^3/dx^3 (tan(x^2)^4/x)/4! +...
-
Rest[CoefficientList[InverseSeries[Series[x - Tan[x^2],{x,0,20}],x],x] * Range[0,20]!] (* Vaclav Kotesovec, Jan 23 2014 *)
-
{a(n)=n!*polcoeff(serreverse(x-tan(x^2+x^2*O(x^n))), n)}
for(n=1, 25, print1(a(n), ", "))
-
{Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x); A=x+sum(m=1, n, Dx(m-1, tan(x^2+x*O(x^n))^m)/m!); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
-
{Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x+x^2+x*O(x^n)); A=x*exp(sum(m=1, n, Dx(m-1, tan(x^2+x*O(x^n))^m/x)/m!)+x*O(x^n)); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
A226760
E.g.f.: A(x) = x + tanh(A(x)^2).
Original entry on oeis.org
1, 2, 12, 120, 1680, 30000, 651840, 16692480, 492307200, 16432899840, 612414190080, 25205181281280, 1135434972672000, 55567263749437440, 2935699697464934400, 166525788640142131200, 10094443872515806003200, 651211844046521735577600, 44547029929095149430374400
Offset: 1
E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 120*x^4/4! + 1680*x^5/4! +...
where A(x - tanh(x^2)) = x and A(x) = x + tanh(A(x)^2).
Series expansions:
A(x) = x + tanh(x^2) + d/dx tanh(x^2)^2/2! + d^2/dx^2 tanh(x^2)^3/3! + d^3/dx^3 tanh(x^2)^4/4! +...
log(A(x)/x) = tanh(x^2)/x + d/dx (tanh(x^2)^2/x)/2! + d^2/dx^2 (tanh(x^2)^3/x)/3! + d^3/dx^3 (tanh(x^2)^4/x)/4! +...
-
Rest[CoefficientList[InverseSeries[Series[x - Tanh[x^2],{x,0,20}],x],x] * Range[0,20]!] (* Vaclav Kotesovec, Jan 23 2014 *)
-
{a(n)=n!*polcoeff(serreverse(x-tanh(x^2+x^2*O(x^n))), n)}
for(n=1, 25, print1(a(n), ", "))
-
{Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x); A=x+sum(m=1, n, Dx(m-1, tanh(x^2+x*O(x^n))^m)/m!); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
-
{Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x+x^2+x*O(x^n)); A=x*exp(sum(m=1, n, Dx(m-1, tanh(x^2+x*O(x^n))^m/x)/m!)+x*O(x^n)); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
A236357
E.g.f. satisfies: sin(x + A(x)) = A(x)^2.
Original entry on oeis.org
-1, 2, -12, 120, -1680, 30360, -672000, 17599680, -532224000, 18248902560, -699544581120, 29645099003520, -1376154991411200, 69445751181206400, -3785191236642816000, 221613328121888102400, -13870531255760776396800, 924194452386724174656000
Offset: 1
-
Rest[CoefficientList[InverseSeries[Series[ArcSin[x^2]-x,{x,0,20}],x],x] * Range[0,20]!]
Showing 1-4 of 4 results.
Comments