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

A309048
Expansion of Product_{k>=0} (1 + x^(3^k) + x^(2*3^k) - x^(3^(k+1))).
4
1, 1, 1, 0, 1, 1, 0, 1, 1, -1, 0, 0, 1, 1, 1, 0, 1, 1, -1, 0, 0, 1, 1, 1, 0, 1, 1, -2, -1, -1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, -1, 0, 0, 1, 1, 1, 0, 1, 1, -2, -1, -1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, -1, 0, 0, 1, 1, 1, 0, 1, 1, -3, -2, -2, 1, -1, -1, 0, -1, -1, 2, 1, 1, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1
OFFSET
0,28
FORMULA
G.f. A(x) satisfies: A(x) = (1 + x + x^2 - x^3) * A(x^3).
a(0) = 1; a(3*n) = a(n) - a(n-1), a(3*n+1) = a(n), a(3*n+2) = a(n).
MATHEMATICA
nmax = 109; CoefficientList[Series[Product[(1 + x^(3^k) + x^(2 3^k) - x^(3^(k + 1))), {k, 0, Floor[Log[3, nmax]] + 1}], {x, 0, nmax}], x]
nmax = 109; A[_] = 1; Do[A[x_] = (1 + x + x^2 - x^3) A[x^3] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := Switch[Mod[n, 3], 0, a[n/3] - a[(n - 3)/3], 1, a[(n - 1)/3], 2, a[(n - 2)/3]]; Table[a[n], {n, 0, 109}]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 09 2019
STATUS
approved