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

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

Original entry on oeis.org

1, 1, 2, 3, 4, 6, 8, 11, 16, 22, 32, 46, 64, 92, 128, 179, 256, 358, 512, 730, 1024, 1460, 2048, 2878, 4096, 5756, 8192, 11644, 16384, 23288, 32768, 46147, 65536, 92294, 131072, 186018, 262144, 372036, 524288, 739210, 1048576, 1478420, 2097152, 2973636
Offset: 0

Views

Author

Paul D. Hanna, Mar 07 2012

Keywords

Comments

Limit a(n)^(1/n) = sqrt(2).

Examples

			G.f.: A(x) = 1 + x + 2*x^2 + 3*x^3 + 4*x^4 + 6*x^5 + 8*x^6 + 11*x^7 +...
Related series:
A(x)*A(-x) = 1 + 3*x^2 + 6*x^4 + 11*x^6 + 22*x^8 + 46*x^10 + 92*x^12 +...
A(x)+A(-x) = 2 + 4*x^2 + 8*x^4 + 16*x^6 + 32*x^8 + 64*x^10 + 128*x^12 +...
		

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[(Sqrt[1+4*x^4] - (1-2*x-2*x^2))/((2*x)*(1-2*x^2)), {x, 0, 20}], x] (* Vaclav Kotesovec, Aug 19 2013 *)
  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=1+x*A*subst(A,x,-x)+x^2*(A+subst(A,x,-x+x*O(x^n))));polcoeff(A,n)}
    for(n=0,60,print1(a(n),", "))
    
  • PARI
    Vec((sqrt(1+4*x^4) - (1-2*x-2*x^2))/((2*x)*(1-2*x^2)) + O(x^50)) \\ G. C. Greubel, Feb 01 2017

Formula

G.f.: A(x) = (sqrt(1+4*x^4) - (1-2*x-2*x^2))/((2*x)*(1-2*x^2)).
Recurrence: (n+1)*a(n) = 2*(n+1)*a(n-2) - 4*(n-5)*a(n-4) + 8*(n-5)*a(n-6). - Vaclav Kotesovec, Aug 19 2013
a(n) ~ 2^(n/2) * (1 - 2*sin(Pi*n/4)*sin(Pi*n/2)/(sqrt(Pi)*n^(3/2))). - Vaclav Kotesovec, Aug 19 2013

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

Original entry on oeis.org

1, 1, 2, 6, 10, 33, 72, 236, 572, 1964, 4800, 16910, 42354, 150670, 386992, 1390176, 3622696, 13128940, 34580568, 126131776, 335409928, 1229708169, 3295834080, 12137093684, 32738710652, 121016095812, 328220839472, 1217132137132, 3316783066620, 12333770952588
Offset: 0

Views

Author

Paul D. Hanna, Dec 17 2013

Keywords

Examples

			G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 10*x^4 + 33*x^5 + 72*x^6 + 236*x^7 +...
Related series:
A(x)^2 = 1 + 2*x + 5*x^2 + 16*x^3 + 36*x^4 + 110*x^5 + 286*x^6 + 868*x^7 +...
A(x)*A(-x) = 1 + 3*x^2 + 12*x^4 + 82*x^6 + 664*x^8 + 5479*x^10 + 47568*x^12 +...
A(x)^2*A(-x)^2 = 1 + 6*x^2 + 33*x^4 + 236*x^6 + 1964*x^8 + 16910*x^10 +...
A(x)^2+A(-x)^2 = 2 + 10*x^2 + 72*x^4 + 572*x^6 + 4800*x^8 + 42354*x^10 +...
		

Crossrefs

Programs

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