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.

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), ", "))