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.

A215129 G.f.: Sum_{n>=0} d^n/dx^n (2*x + x^2)^(2*n) / n!.

This page as a plain text file.
%I A215129 #5 Aug 04 2012 01:26:06
%S A215129 1,8,108,1604,25000,400680,6539932,108124704,1804745052,30345973020,
%T A215129 513246523504,8722051475280,148808353519644,2547317293116512,
%U A215129 43729600850054640,752553083643333008,12978731348733064680,224258766666165861192
%N A215129 G.f.: Sum_{n>=0} d^n/dx^n (2*x + x^2)^(2*n) / n!.
%C A215129 Compare to: Sum_{n>=0} d^n/dx^n x^(2*n)/n! = 1/sqrt(1-4*x).
%F A215129  G.f.: A(x) = d/dx G(x), where G(x) = x + (2*G(x) + G(x)^2)^2.
%e A215129 G.f.: A(x) = 1 + 2*x + 12*x^2 + 64*x^3 + 370*x^4 + 2184*x^5 + 13132*x^6 +...
%e A215129 such that, by definition:
%e A215129 A(x) = 1 + d/dx (2*x+x^2)^2 + d^2/dx^2 (2*x+x^2)^4/2! + d^3/dx^3 (2*x+x^2)^6/3! + d^4/dx^4 (2*x+x^2)^8/4! + d^5/dx^5 (2*x+x^2)^10/5! +...
%o A215129 (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
%o A215129 {a(n)=local(A=x); A=1+sum(m=1, n, Dx(m, (2*x+x^2+x*O(x^n))^(2*m)/m!)); polcoeff(A, n)}
%o A215129 for(n=0, 25, print1(a(n), ", "))
%Y A215129 Cf. A215128.
%K A215129 nonn
%O A215129 0,2
%A A215129 _Paul D. Hanna_, Aug 04 2012