cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A143134 E.g.f. satisfies: A(x) = x + sin( A(x) )^2 with A(0)=0.

Original entry on oeis.org

1, 2, 12, 112, 1440, 23552, 467712, 10926592, 293544960, 8914583552, 301957742592, 11285975498752, 461367611228160, 20477098870833152, 980591931131953152, 50393637174029320192, 2766350676943951626240
Offset: 1

Views

Author

Paul D. Hanna, Jul 27 2008

Keywords

Comments

Radius of convergence of A(x) is r = Pi/4 - 1/2, with A(r) = Pi/4.

Examples

			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! +...
Related expansions:
A(x) = x + sin(x)^2 + d/dx sin(x)^4/2! + d^2/dx^2 sin(x)^6/3! + d^3/dx^3 sin(x)^8/4! +...
log(A(x)/x) = sin(x)^2/x + d/dx (sin(x)^4/x)/2! + d^2/dx^2 (sin(x)^6/x)/3! + d^3/dx^3 (sin(x)^8/x)/4! +...
		

Crossrefs

Programs

  • Mathematica
    Rest[CoefficientList[InverseSeries[Series[x - Sin[x]^2,{x,0,20}],x],x] * Range[0,20]!] (* Vaclav Kotesovec, Jan 18 2014 *)
  • 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)}
    
  • PARI
    {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+x*O(x^n))^(2*m)/m!)); n!*polcoeff(A, n)}
    
  • PARI
    {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+x*O(x^n))^(2*m)/x/m!)+x*O(x^n))); n!*polcoeff(A, n)}
    for(n=1, 25, print1(a(n), ", "))

Formula

E.g.f. satisfies:
(1) A(x) = Series_Reversion( x - sin(x)^2 ).
(2) A(x) = x + Sum_{n>=1} (-1)^(n-1)*2^(2*n-1) * A(x)^(2*n)/(2*n)!.
(3) A(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) sin(x)^(2*n)/n!.
(4) A(x) = x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) (sin(x)^(2*n)/x)/n! ).
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
a(n) ~ GAMMA(1/3) * 2^(2*n-3/2) * n^(n-5/6) / (3^(1/6) * sqrt(Pi) * exp(n) * (Pi-2)^(n-1/3)). - Vaclav Kotesovec, Jan 18 2014

A143137 E.g.f. satisfies A(x) = sinh(x + A(x)^2).

Original entry on oeis.org

1, 2, 13, 140, 2101, 40502, 954073, 26557400, 852911401, 31042592042, 1262704455013, 56767589130980, 2795116027239901, 149590982933830622, 8646295934108179633, 536766403519254357680, 35620604244949591333201
Offset: 1

Views

Author

Paul D. Hanna, Jul 27 2008

Keywords

Examples

			A(x) = x + 2*x^2/2! + 13*x^3/3! + 140*x^4/4! + 2101*x^5/5! +...
A(x) = sinh(G(x)) where G(x) is the e.g.f. of A143136:
G(x) = x + 2*x^2/2! + 12*x^3/3! + 128*x^4/4! + 1920*x^5/5! +...
		

Crossrefs

Programs

  • Mathematica
    Rest[CoefficientList[InverseSeries[Series[-x^2 + ArcSinh[x],{x,0,20}],x],x] * Range[0,20]!] (* Vaclav Kotesovec, Jan 08 2014 *)
  • PARI
    {a(n)=n!*polcoeff(sinh(serreverse(x-sinh(x+x*O(x^n))^2)),n)}
    
  • PARI
    {a(n)=local(A=x);for(i=0,n,A=x + sinh(A)^2);n!*polcoeff(sinh(A),n)}

Formula

E.g.f.: A(x) = sinh(G(x)) where G(x) = Series_Reversion( x - sinh(x)^2 ) is the e.g.f. of A143136.
a(n) ~ sqrt(1+sqrt(2)) * 2^(n-7/4) * n^(n-1) / (exp(n) * (1-sqrt(2)+log(1+sqrt(2)))^(n-1/2)). - Vaclav Kotesovec, Jan 08 2014

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

Views

Author

Vaclav Kotesovec, Jan 23 2014

Keywords

Comments

For n < 10 is |a(n)| = A215188(n), but a(10) is different.

Crossrefs

Programs

  • Mathematica
    Rest[CoefficientList[InverseSeries[Series[ArcSin[x^2]-x,{x,0,20}],x],x] * Range[0,20]!]

Formula

E.g.f.: Series_Reversion(arcsin(x^2)-x).
a(n) ~ (-1)^n * (4/sqrt(5)-8/5)^(1/4) * n^(n-1) / (exp(n) * (sqrt(sqrt(5)-2) - arcsin(sqrt(5)-2))^(n-1/2))
Showing 1-3 of 3 results.