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.

A264414 G.f. A(x) satisfies: A(x)^2 = A(x^2) + 20*x.

This page as a plain text file.
%I A264414 #11 Apr 17 2016 06:44:42
%S A264414 1,10,-45,450,-5535,75600,-1106100,16953750,-268652880,4365638550,
%T A264414 -72354858300,1218356280000,-20784495119850,358457180010750,
%U A264414 -6239532583193625,109476057598087500,-1934128026918961515,34378012275668994150,-614328464414815220025,11030366153872043358750,-198899407327466712808800,3600377821710426377668500
%N A264414 G.f. A(x) satisfies: A(x)^2 = A(x^2) + 20*x.
%H A264414 Paul D. Hanna, <a href="/A264414/b264414.txt">Table of n, a(n) for n = 0..300</a>
%F A264414 Given g.f. A(x), let G(x) denote the g.f. of A264226, then:
%F A264414 (1) G( x/(A(x)^2 - 16*x) ) = x,
%F A264414 (2) G( x/(A(x^2) + 4*x) ) = x,
%F A264414 (3) A(G(x))^2 = (1+16*x) * G(x)/x,
%F A264414 (4) A(G(x)^2) = (1-4*x) * G(x)/x,
%F A264414 where G(x)^2 = G( x^2/(1-8*x) ).
%e A264414 G.f.: A(x) = 1 + 10*x - 45*x^2 + 450*x^3 - 5535*x^4 + 75600*x^5 - 1106100*x^6 +...
%e A264414 where
%e A264414 A(x)^2 = 1 + 20*x + 10*x^2 - 45*x^4 + 450*x^6 - 5535*x^8 + 75600*x^10 - 1106100*x^12 +...
%e A264414 so that A(x)^2 = A(x^2) + 20*x.
%e A264414 Let G(x) = Series_Reversion( x / (A(x^2) + 4*x) ), then
%e A264414 G(x) = x + 4*x^2 + 28*x^3 + 208*x^4 + 1702*x^5 + 14584*x^6 + 129808*x^7 + 1187008*x^8 + 11089153*x^9 + 105370660*x^10 +...+ A264226(n)*x^n +...
%e A264414 such that G(x)^2 = G( x^2/(1-8*x) ).
%o A264414 (PARI) {a(n) = my(A=1); for(i=1,n, A = sqrt( subst(A,x,x^2) + 20*x +x*O(x^n))); polcoeff(A,n)}
%o A264414 for(n=0,30,print1(a(n),", "))
%Y A264414 Cf. A271957, A264226, A264412, A264413, A264415.
%K A264414 sign
%O A264414 0,2
%A A264414 _Paul D. Hanna_, Nov 12 2015