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-5 of 5 results.

A143555 G.f. satisfies: A(x) = 1 + x*A(x)^2/A(-x)^2.

Original entry on oeis.org

1, 1, 4, 8, 28, 80, 308, 984, 3980, 13472, 56164, 197032, 838396, 3013872, 13015188, 47624568, 207971436, 771336512, 3397886660, 12736715592, 56502898140, 213618833808, 953139545076, 3629043226392, 16270547827020, 62317467147744
Offset: 0

Views

Author

Paul D. Hanna, Aug 24 2008

Keywords

Comments

Specific values: A(2/9) = 17/9 and A(-2/9) = 17/18.
Radius of convergence: r = sqrt(2*sqrt(3)-3)/3 = 0.2270833462...
with A(r) = (2 + sqrt(1-3*r))*(1+r^2)/(1+r) = 2.19775350...
and A(-r) = (2 - sqrt(1+3*r))*(1+r^2)/(1-r) = 3*(1+r^2) - A(r) = 0.9569470...
At x=r, the equation (*) (1+x^2)^2 - 2*(1+x^2)*y + (1+x)*y^2 - x*y^3 = 0, which is satisfied by y = A(x), factors out to: (y - A(r))^2 * (y - A(r)*(1+r^2)/(2*(A(r)-1-r^2))) = 0; this gives the relation: (A(r)-1-r^2)*(3+3*r^2-A(r)) = r*A(r)^2. At x>r, the equation (*) admits complex solutions for y.

Examples

			G.f. A(x) = 1 + x + 4*x^2 + 8*x^3 + 28*x^4 + 80*x^5 + 308*x^6 +...
A(x)/A(-x) = 1 + 2*x + 2*x^2 + 10*x^3 + 18*x^4 + 98*x^5 + 210*x^6 +...
where 1 - (1+x^2)/A(x) = x*A(x)/A(-x).
Related expansions:
A(x)^2/A(-x)^2 = 1 + 4*x + 8*x^2 + 28*x^3 + 80*x^4 + 308*x^5 +...
A(x)^2 = 1 + 2*x + 9*x^2 + 24*x^3 + 88*x^4 + 280*x^5 + 1064*x^6 +...
where A(x)^2/A(-x)^2 = A(x)^2 + x + x*A(-x).
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=0,n,A=1+x*A^2/subst(A^2,x,-x));polcoeff(A,n)}

Formula

G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies the following formulas.
(1) (1+x^2)^2 - 2*(1+x^2)*A(x) + (1+x)*A(x)^2 - x*A(x)^3 = 0.
(2) A(x) = 1 + x*A(x)^2 + x^2 + x^2*A(-x).
(3) A(x) = 1 + x^2 + x*A(x)^2/A(-x).
(4) A(x) = 1 + x^2/(1 - A(-x)).
(5) A(x) = 1 + ( 1 - (1+x^2)/A(x) )^2/x.
(6) A(x) = (1+x^2)*G(x) where G(x) = 1 + x*G(x)^2/G(-x) is the g.f. of A143339.
Recurrence: (n-1)*(n+1)*(4*n^3 - 32*n^2 + 71*n - 30)*a(n) = 6*(8*n^3 - 56*n^2 + 101*n - 10)*a(n-1) + 6*(12*n^5 - 132*n^4 + 499*n^3 - 700*n^2 + 102*n + 305)*a(n-2) - 18*(n-4)*(8*n - 25)*a(n-3) + 27*(n-5)*(n-4)*(4*n^3 - 20*n^2 + 19*n + 13)*a(n-4). - Vaclav Kotesovec, Dec 29 2013
a(n) ~ c * 3^(n-1) * 2*sqrt(6*sqrt(3)-6 + sqrt(9+6*sqrt(3))) / (2*sqrt(Pi) * (2*sqrt(3)-3)^(n/2+1/4) * n^(3/2)), where c = 4/(2+12^(1/4)) if n is even and c = 12/(6+12^(3/4)) if n is odd. - Vaclav Kotesovec, Dec 29 2013

A143557 G.f. satisfies: A(x) = 1 + x*A(x)^4/A(-x)^4.

Original entry on oeis.org

1, 1, 8, 32, 280, 1728, 16744, 117856, 1202552, 9044352, 95203784, 745451168, 8011827928, 64459117632, 703166465320, 5769038826208, 63639465830712, 529889242505984, 5896324892061576, 49665617425122592, 556508207889107096
Offset: 0

Views

Author

Paul D. Hanna, Aug 24 2008

Keywords

Examples

			G.f. A(x) = 1 + x + 8*x^2 + 32*x^3 + 280*x^4 + 1728*x^5 + 16744*x^6 +...
A(x)/A(-x) = 1 + 2*x + 2*x^2 + 50*x^3 + 98*x^4 + 2658*x^5 + 6370*x^6 +...
A(x)^3/A(-x)^3 = 1 + 6*x + 18*x^2 + 182*x^3 + 930*x^4 + 10374*x^5 +...
where 1 - (1+x^2)/A(x) = x*A(x)^3/A(-x)^3.
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=0,n,A=1+x*A^4/subst(A^4,x,-x));polcoeff(A,n)}

Formula

G.f. satisfies: A(x) = 1 + x^2/(1 - A(-x)).
G.f. satisfies: A(x) = 1 + x^2 + x*A(x)^4 / A(-x)^3.
G.f. satisfies: (A(x) - 1)^3 = ( 1 - (1+x^2)/A(x) )^4/x = x^3*A(x)^12/A(-x)^12.
G.f.: A(x) = (1+x^2)*G(x) where G(x) = 1 + x*G(x)^4/G(-x)^3 is the g.f. of A143564.

A143558 G.f. satisfies: A(x) = 1 + x*A(x)^5/A(-x)^5.

Original entry on oeis.org

1, 1, 10, 50, 570, 4450, 56202, 501970, 6676410, 63799490, 875391370, 8715058802, 122088479930, 1249437863970, 17764858122250, 185445650940690, 2666213981716282, 28252030821781890, 409717783914784010
Offset: 0

Views

Author

Paul D. Hanna, Aug 24 2008

Keywords

Examples

			G.f. A(x) = 1 + x + 10*x^2 + 50*x^3 + 570*x^4 + 4450*x^5 + 56202*x^6 +...
A(x)/A(-x) = 1 + 2*x + 2*x^2 + 82*x^3 + 162*x^4 + 7202*x^5 + 17442*x^6 +...
A(x)^4/A(-x)^4 = 1 + 8*x + 32*x^2 + 408*x^3 + 2752*x^4 + 38760*x^5 +...
where 1 - (1+x^2)/A(x) = x*A(x)^4/A(-x)^4.
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=0,n,A=1+x*A^5/subst(A^5,x,-x));polcoeff(A,n)}

Formula

G.f. satisfies: A(x) = 1 + x^2/(1 - A(-x)).
G.f. satisfies: A(x) = 1 + x^2 + x*A(x)^5/A(-x)^4.
G.f. satisfies: (A(x) - 1)^4 = ( 1 - (1+x^2)/A(x) )^5/x = x^4*A(x)^20/A(-x)^20.
G.f.: A(x) = (1+x^2)*G(x) where G(x) = 1 + x*G(x)^5/G(-x)^4.

A143559 G.f. satisfies: A(x) = 1 + x*A(x)^6/A(-x)^6.

Original entry on oeis.org

1, 1, 12, 72, 1012, 9552, 148764, 1609496, 26398020, 305821344, 5174354988, 62479377384, 1079265357204, 13399747245040, 234917433809724, 2975608178304696, 52748683164797668, 678307369324850496
Offset: 0

Views

Author

Paul D. Hanna, Aug 24 2008

Keywords

Examples

			G.f. A(x) = 1 + x + 12*x^2 + 72*x^3 + 1012*x^4 + 9552*x^5 + 148764*x^6 +...
A(x)/A(-x) = 1 + 2*x + 2*x^2 + 122*x^3 + 242*x^4 + 16002*x^5 + 38962*x^6 +...
A(x)^5/A(-x)^5 = 1 + 10*x + 50*x^2 + 770*x^3 + 6450*x^4 + 109802*x^5 +...
where 1 - (1+x^2)/A(x) = x*A(x)^5/A(-x)^5.
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=0,n,A=1+x*A^6/subst(A^6,x,-x));polcoeff(A,n)}

Formula

G.f. satisfies: A(x) = 1 + x^2/(1 - A(-x)).
G.f. satisfies: A(x) = 1 + x^2 + x*A(x)^6/A(-x)^5.
G.f. satisfies: (A(x) - 1)^5 = ( 1 - (1+x^2)/A(x) )^6/x = x^5*A(x)^30/A(-x)^30.
G.f.: A(x) = (1+x^2)*G(x) where G(x) = 1 + x*G(x)^6/G(-x)^5.

A143562 G.f. satisfies: A(x) = 1 + x*A(x)^3/A(-x)^2.

Original entry on oeis.org

1, 1, 5, 17, 105, 481, 3261, 16801, 119697, 656129, 4819061, 27447601, 205776121, 1202943457, 9152680109, 54524185409, 419491297313, 2534963932417, 19673179986661, 120224135048273, 939543098579081, 5793676726569697
Offset: 0

Views

Author

Paul D. Hanna, Aug 24 2008

Keywords

Examples

			G.f. A(x) = 1 + x + 5*x^2 + 17*x^3 + 105*x^4 + 481*x^5 + 3261*x^6 +...
A(x)*A(-x) = 1 + 9*x^2 + 201*x^4 + 6321*x^6 + 233073*x^8 +...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=0,n,A=1+x*A^3/subst(A^2,x,-x));polcoeff(A,n)}

Formula

G.f. satisfies: A(x) + A(-x) = 1 + (1+x^2)*A(x)*A(-x).
G.f. satisfies: A(x) = Sum_{n>=0} x^n * A(x)^(2*n) / A(-x)^(2*n).
G.f. satisfies: A(x) = exp( Sum_{n>=1} A(x)^(2*n)/A(-x)^(2*n) * x^n/n ).
G.f.: A(x) = G(x)/(1+x^2) where G(x) = 1 + x*G(x)^3/G(-x)^3 is the g.f. of A143556.
Showing 1-5 of 5 results.