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.

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

Original entry on oeis.org

1, 1, 3, 7, 25, 73, 283, 911, 3697, 12561, 52467, 184471, 785929, 2829401, 12229259, 44795167, 195742177, 726541345, 3202144483, 12010174247, 53300753657, 201608659561, 899838791419, 3427434566831, 15370709035601, 58890032580913
Offset: 0

Views

Author

Paul D. Hanna, Aug 09 2008

Keywords

Comments

Specific values: A(2/9) = 9/5 and A(-2/9) = 9/10.
Radius of convergence: r = sqrt(2*sqrt(3)-3)/3 = 0.2270833462...
with A(r) = (2 + sqrt(1-3*r))/(1+r) = 2.0899798397...
and A(-r) = (2 - sqrt(1+3*r))/(1-r) = 3 - A(r) = r*A(r)^2/(A(r)-1) = 0.91002016...
At x=r, the equation (*) 1 - 2*y + (1+x)*y^2 - (x+x^3)*y^3 = 0, which is satisfied by y = A(x), factors out to: (y - A(r))^2 * (y - A(r)/(2*A(r)-2)) = 0; this gives the relation: (A(r)-1)*(3-A(r))/A(r)^2 = r. At x>r, the equation (*) admits complex solutions for y.
The limit a(n+1)/a(n) does not exist but oscillates between 2 attractors:
Limit a(2*n)/a(2*n-1) = sqrt(3)+3, Limit a(2*n+1)/a(2*n) = 3*(sqrt(3)+1)/2.

Examples

			A bisection of g.f. A(x) equals a bisection of A(x)^2:
A(x) = 1 + x + 3*x^2 + 7*x^3 + 25*x^4 + 73*x^5 + 283*x^6 + 911*x^7 +...
A(x)^2 = 1 + 2*x + 7*x^2 + 20*x^3 + 73*x^4 + 238*x^5 + 911*x^6 +...
that is, A(x) - x*A(x)^2 = 1 + x^2*A(x)*A(-x), where
A(x)*A(-x) = 1 + 5*x^2 + 45*x^4 + 521*x^6 + 6873*x^8 + 98061*x^10 +...
Related expressions:
A(x) = 1 + x*A(x)/A(-x) + x^2*A(x)^2/A(-x)^2 + x^3*A(x)^3/A(-x)^3 +...
log(A(x)) = A(x)/A(-x)*x + A(x)^2/A(-x)^2*x^2/2 + A(x)^3/A(-x)^3*x^3/3 +...
Illustrate the behavior of a(n+1)/a(n) as n grows:
a(301)/a(300) = 4.07522764...
a(302)/a(301) = 4.71149410...
a(303)/a(302) = 4.07537802...
a(304)/a(303) = 4.71162882...
the limits of which approach the attractors:
3*(sqrt(3)+1)/2 = 4.09807621... and sqrt(3)+3 = 4.73205080...
note that the product of the attractors equals 1/r^2, where
r = sqrt(2*sqrt(3)-3)/3  =  sqrt(2/sqrt(3))/(sqrt(3)+3)
is the radius of convergence of the g.f. A(x).
		

Crossrefs

Programs

  • Mathematica
    terms = 26; A[] = 1; Do[A[x] = 1 + x*A[x]^2/A[-x] + O[x]^terms // Normal, terms]; CoefficientList[A[x], x] (* Jean-François Alcover, Jan 15 2018 *)
  • PARI
    {a(n)=local(A=1+x+x*O(x^n));for(i=0,n,A=1+x*A^2/subst(A,x,-x));polcoeff(A,n)}
    
  • PARI
    {a(n)=local(A=1+x+x*O(x^n));for(i=1,n,A=exp(sum(m=1,n,A^m/subst(A^m,x,-x+x*O(x^n))*x^m/m)));polcoeff(A,n)}
    
  • PARI
    {a(n)=local(A=1+x+x*O(x^n));for(i=1,n,A=sum(m=0,n,x^m*A^m/subst(A^m,x,-x+x*O(x^n))));polcoeff(A,n)}

Formula

G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies the following formulas.
(1) 1 - 2*A(x) + (1+x)*A(x)^2 - (x+x^3)*A(x)^3 = 0.
(2) A(x) = exp( Sum_{n>=1} A(x)^n / A(-x)^n * x^n/n ).
(3) A(x) = Sum_{n>=0} x^n * A(x)^n / A(-x)^n.
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) + (68*n^5 - 760*n^4 + 2927*n^3 - 4202*n^2 + 683*n + 1800)*a(n-2) + 12*(4*n^3 - 40*n^2 + 136*n - 155)*a(n-3) + 3*(60*n^5 - 768*n^4 + 3509*n^3 - 6422*n^2 + 2571*n + 2950)*a(n-4) - 18*(n-4)*(8*n - 25)*a(n-5) + 27*(n-5)*(n-4)*(4*n^3 - 20*n^2 + 19*n + 13)*a(n-6). - Vaclav Kotesovec, Feb 17 2014

A216681 G.f.: A(x) = 1 + x*A(x)^3 / ( A(I*x)*A(-I*x) ), where I^2 = -1.

Original entry on oeis.org

1, 1, 3, 17, 85, 333, 1883, 13153, 76329, 363033, 2304867, 17067553, 104686957, 534812789, 3558451915, 27086552833, 170930393745, 906063493617, 6183676880195, 47831931663921, 307091159448965, 1664876216837789, 11545009017568635, 90248125157828449
Offset: 0

Views

Author

Paul D. Hanna, Sep 14 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + 3*x^2 + 17*x^3 + 85*x^4 + 333*x^5 + 1883*x^6 +...
Related expansions:
A(x)^2 = 1 + 2*x + 7*x^2 + 40*x^3 + 213*x^4 + 938*x^5 + 5231*x^6 +...
A(x)^3 = 1 + 3*x + 12*x^2 + 70*x^3 + 393*x^4 + 1893*x^5 + 10632*x^6 +...
A(x)*A(-x) = 1 + 5*x^2 + 145*x^4 + 3321*x^6 + 133553*x^8 + 4103661*x^10 +...
A(I*x)*A(-I*x) = 1 - 5*x^2 + 145*x^4 - 3321*x^6 + 133553*x^8 - 4103661*x^10 + 184486609*x^12 - 6359604209*x^14 + 302240850145*x^16 - 11073953305621*x^18 +...
Note that a bisection of 1/A(x)^2 equals a bisection of 1/A(x)^3:
1/A(x)^2 = 1 - 2*x - 3*x^2 - 20*x^3 - 72*x^4 - 108*x^5 - 1196*x^6 +...
1/A(x)^3 = 1 - 3*x - 3*x^2 - 25*x^3 - 72*x^4 + 12*x^5 - 1196*x^6 +...
		

Crossrefs

Programs

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

A216713 G.f.: A(x) = 1 + x*A(x)^2 / ( A(w*x)*A(w^2*x) ), where w = exp(2*Pi*I/3).

Original entry on oeis.org

1, 1, 3, 12, 27, 105, 420, 1242, 5295, 22395, 72738, 323268, 1410684, 4806675, 21881721, 97371786, 341608239, 1579726122, 7123796790, 25489388367, 119184247992, 542664427242, 1969440159591, 9284827569117, 42584603672868, 156213604844883, 741154831030785
Offset: 0

Views

Author

Paul D. Hanna, Sep 14 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + 3*x^2 + 12*x^3 + 27*x^4 + 105*x^5 + 420*x^6 +...
Related expansions:
A(x)^2 = 1 + 2*x + 7*x^2 + 30*x^3 + 87*x^4 + 336*x^5 + 1356*x^6 +...
A(x)^3 = 1 + 3*x + 12*x^2 + 55*x^3 + 189*x^4 + 756*x^5 + 3132*x^6 +...
Let w = exp(2*Pi*I/3), then A(x) = 1 + x*A(x)^3/(A(x)*A(w*x)*A(w^2*x)) where
A(x)*A(w*x)*A(w^2*x) = 1 + 28*x^3 + 1134*x^6 + 61857*x^9 + 3929121*x^12 + 272388420*x^15 + 19981576476*x^18 + 1524888581787*x^21 +...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=1,n+1,A=1+x*A^3*exp(-3*sum(m=1,n\3,x^(3*m)*polcoeff(log(A),3*m))+x*O(x^n)));polcoeff(A,n)}
    for(n=0,30,print1(a(n),", "))

A216712 G.f.: A(x) = 1 + x*A(x)^3 / ( A(-x)*A(I*x)*A(-I*x) ), where I^2 = -1.

Original entry on oeis.org

1, 1, 4, 22, 140, 514, 3444, 23790, 165932, 774610, 5767268, 42526198, 310791884, 1574532626, 12230311188, 92980917006, 696528653740, 3677761305954, 29231321098692, 226211978983190, 1720430261953036, 9313977313216354, 75106192841523892, 588010633850768622
Offset: 0

Views

Author

Paul D. Hanna, Sep 14 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + 4*x^2 + 22*x^3 + 140*x^4 + 514*x^5 + 3444*x^6 +...
Related expansions:
A(x)^2 = 1 + 2*x + 9*x^2 + 52*x^3 + 340*x^4 + 1484*x^5 + 9520*x^6 +...
A(x)^3 = 1 + 3*x + 15*x^2 + 91*x^3 + 612*x^4 + 3024*x^5 + 19240*x^6 +...
A(x)^4 = 1 + 4*x + 22*x^2 + 140*x^3 + 969*x^4 + 5264*x^5 + 33800*x^6 +...
A(x)*A(-x) = 1 + 7*x^2 + 252*x^4 + 6496*x^6 + 308820*x^8 + 10966136*x^10 + 582452652*x^12 + 23322250960*x^14 + 1309365750212*x^16 +...
Note that A(x) = 1 + x*A(x)^4/(A(x)*A(-x)*A(I*x)*A(-I*x)) where
A(x)*A(-x)*A(I*x)*A(-I*x) = 1 + 455*x^4 + 590200*x^8 + 1124826664*x^12 + 2538673877080*x^16 + 6294363022919816*x^20 + 16568529053651321656*x^24 +...
Note also that a bisection of 1/A(x)^3 equals a bisection of 1/A(x)^4:
1/A(x)^3 = 1 - 3*x - 6*x^2 - 28*x^3 - 165*x^4 + 273*x^5 - 2292*x^6 +...
1/A(x)^4 = 1 - 4*x - 6*x^2 - 28*x^3 - 165*x^4 + 728*x^5 - 2292*x^6 +...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=1,n,A=1+x*A^3/(subst(A,x,-x)*subst(A,x,I*x)*subst(A,x,-I*x)));polcoeff(A, n)}
    
  • PARI
    {a(n)=local(A=1+x*O(x^n));for(i=1,n+1,A=1+x*A^4*exp(-4*sum(m=1,n\4,x^(4*m)*polcoeff(log(A),4*m))+x*O(x^n)));polcoeff(A,n)}
    for(n=0,30,print1(a(n),", "))

A216683 G.f. satisfies: A(x) = 1 + x*A(x) / ( A(I*x)*A(-I*x) ).

Original entry on oeis.org

1, 1, 1, 2, 3, 2, 2, 0, -5, -2, -2, 8, 38, 20, 20, -48, -269, -138, -138, 392, 2194, 1132, 1132, -3344, -19010, -9812, -9812, 30032, 172332, 89000, 89000, -279136, -1613629, -833626, -833626, 2663432, 15485978, 8002172, 8002172, -25938768, -151520246, -78309372, -78309372
Offset: 0

Views

Author

Paul D. Hanna, Sep 14 2012

Keywords

Examples

			G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 3*x^4 + 2*x^5 + 2*x^6 - 5*x^8 - 2*x^9 +...
Related expansions:
1/A(x) = 1 - x - x^3 + 2*x^5 + 3*x^7 - 10*x^9 - 18*x^11 + 68*x^13 + 131*x^15 - 530*x^17 - 1062*x^19 +...+ -A143045(n)*x^(2*n-1) +...
A(I*x)*A(-I*x) = 1 - x^2 + 3*x^4 - 2*x^6 - 5*x^8 + 2*x^10 + 38*x^12 - 20*x^14 - 269*x^16 + 138*x^18 + 2194*x^20 +...
The 4-sections of g.f. A(x) begin:
A0(x) = 1 + 3*x - 5*x^2 + 38*x^3 - 269*x^4 + 2194*x^5 - 19010*x^6 + 172332*x^7 +...
A1(x) = A2(x) = 1 + 2*x - 2*x^2 + 20*x^3 - 138*x^4 + 1132*x^5 - 9812*x^6 + 89000*x^7 +...
A3(x) = 2 + 8*x^2 - 48*x^3 + 392*x^4 - 3344*x^5 + 30032*x^6 - 279136*x^7 + 2663432*x^8 +...
where
A1(x) + x*A3(x)/(2*A0(x)) = 1 + 3*x - 5*x^2 + 38*x^3 - 269*x^4 + 2194*x^5 +...
		

Crossrefs

Programs

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

Formula

G.f.: A(x) = 1/(1 - G(x^2)/x) where G(x) = x + G(-x)^2 is the g.f. of A143045.
a(4*n+1) = a(4*n+2) for n>=0.
Let A(x) = A0(x^4) + x*A1(x^4) + x^2*A2(x^2) + x^3*A3(x^4), then
(1) A1(x) = A2(x).
(2) A0(x) = A1(x) + x*A3(x) / (2*A0(x)).
(3) A0(x^4) - x^2*A2(x^4) = A(I*x)*A(-I*x).
Showing 1-5 of 5 results.