A196345 The 5th power of the g.f. equals the g.f. of A196344.
1, 1, -2, 6, -21, 80, -320, 1326, -5637, 24434, -107542, 479196, -2157045, 9792702, -44780606, 206055345, -953305628, 4431463845, -20686696836, 96931500441, -455722376856, 2149086834269, -10162544424168, 48176923110789, -228913128188293, 1089973053510359
Offset: 0
Keywords
Examples
G.f.: A(x) = 1 + x - 2*x^2 + 6*x^3 - 21*x^4 + 80*x^5 - 320*x^6 + 1326*x^7 - 5637*x^8 + 24434*x^9 - 107542*x^10 +... where A(x)^5 = 1 + 5*x + x^5 - 2*x^10 + x^15 - x^20 + x^35 - 2*x^40 - x^45 - 2*x^50 + x^55 + 2*x^65 - x^70 + 2*x^80 +...+ A196344(n)*x^n +... A196344 begins: [1,5,0,0,0,1,0,0,0,0,-2,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,...].
Links
- Paul D. Hanna, Table of n, a(n) for n = 0..200
Programs
-
PARI
{a(n)=local(A=1+5*x); if(n==0, 1, for(j=1, n, for(k=-2, 2, t=polcoeff((A+k*x^j+x*O(x^j))^(1/5), j); if(denominator(t)==1, A=A+k*x^j; break))); polcoeff((A+x*O(x^n))^(1/5), n))}
Comments