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

A307538
G.f. A(x) satisfies: A(x) = x*exp(2*A(-x) + 2*A(-x^3)/3 + 2*A(-x^5)/5 + 2*A(-x^7)/7 + 2*A(-x^9)/9 + ...).
1
0, 1, -2, -2, 10, 14, -86, -126, 858, 1302, -9378, -14606, 108954, 172698, -1319966, -2119118, 16489594, 26731542, -210887998, -344490170, 2747510514, 4515757426, -36336187630, -60023827438, 486540793914, 807121753178, -6582918170714, -10959656342678, 89860260268098
OFFSET
0,3
FORMULA
G.f.: A(x) = Sum_{n>=1} a(n)*x^n = x * Product_{n>=1} ((1 + x^n)/(1 - x^n))^((-1)^n*a(n)).
Recurrence: a(n+1) = (2/n) * Sum_{k=1..n} ( Sum_{d|k, k/d odd} (-1)^d*d*a(d) ) * a(n-k+1).
EXAMPLE
G.f.: A(x) = x - 2*x^2 - 2*x^3 + 10*x^4 + 14*x^5 - 86*x^6 - 126*x^7 + 858*x^8 + 1302*x^9 - 9378*x^10 - 14606*x^11 + ...
MATHEMATICA
terms = 28; A[_] = 0; Do[A[x_] = x Exp[Sum[2 A[-x^(2 k - 1)]/(2 k - 1), {k, 1, terms}]] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x]
a[n_] := a[n] = SeriesCoefficient[x Product[((1 + x^k)/(1 - x^k))^((-1)^k a[k]), {k, 1, n - 1}], {x, 0, n}]; a[0] = 0; Table[a[n], {n, 0, 28}]
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Apr 14 2019
STATUS
approved