Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #5 Jul 05 2013 10:21:35
%S 1,2,-6,28,-138,828,-5180,33528,-223002,1512812,-10423796,72743688,
%T -513005252,3649850584,-26162987064,188758837488,-1369529290618,
%U 9985780112460,-73129564342212,537647977891688,-3966638722824108,29357430489994120,-217899481094085320,1621534636345991568,-12095712639252241956
%N G.f.: ( Sum_{n>=0} 8^n*x^(n^2) )^(1/4).
%e G.f.: A(x) = 1 + 2*x - 6*x^2 + 28*x^3 - 138*x^4 + 828*x^5 - 5180*x^6 + 33528*x^7 - 223002*x^8 + 1512812*x^9 - 10423796*x^10 +...
%e where
%e A(x)^4 = 1 + 8*x + 8^2*x^4 + 8^3*x^9 + 8^4*x^16 + 8^5*x^25 + 8^6*x^36 +...
%o (PARI) {a(n)=polcoeff((sum(k=0,n,8^k*x^(k^2))+x*O(x^n))^(1/4),n)}
%o for(n=0,36,print1(a(n),", "))
%Y Cf. A227293, A227295.
%K sign
%O 0,2
%A _Paul D. Hanna_, Jul 05 2013