login

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”).

A196346
A quintisection of A196344.
3
1, 1, -2, 1, -1, 0, 0, 1, -2, -1, -2, 1, 0, 2, -1, 0, 2, 0, -1, 1, -1, -1, 2, -1, 2, -1, 2, -1, 2, -1, 2, 0, -2, 0, 0, -2, 2, -2, -1, 0, -1, 2, -1, -2, 1, -2, 1, 2, -2, 0, 2, 2, 1, 0, -2, -1, -2, -2, 0, 2, 2, 1, 1, 1, 2, 1, -1, 2, 1, -1, 1, 0, 2, 2, -1, 2, -1, 1, -1, -2, -1, 1, -1, -1, -1, 1, 2, 0, -2, 0, 1, 2, 1, 2, -2
OFFSET
0,3
LINKS
EXAMPLE
G.f.: A(x) = 1 + x - 2*x^2 + x^3 - x^4 + x^7 - 2*x^8 - x^9 - 2*x^10 + x^11 + 2*x^13 - x^14 + 2*x^16 - x^18 + x^19 - x^20 +...
where the following series consists entirely of integer coefficients:
(A(x^5) + 5*x)^(1/5) = 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 +...+ A196345(n)*x^n +...
PROG
(PARI) {a(n)=local(A=1+5*x); if(n==0, 1, for(j=1, 5*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^(5*n)), 5*n))}
CROSSREFS
Sequence in context: A232442 A107110 A061197 * A261884 A035178 A093829
KEYWORD
sign
AUTHOR
Paul D. Hanna, Oct 01 2011
STATUS
approved