login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A306768 G.f. A(x) satisfies: A(x) = x*exp(-A(-x) + A(-x^2)/2 - A(-x^3)/3 + A(-x^4)/4 - A(-x^5)/5 + ...). 3
0, 1, 1, -1, -2, 2, 6, -5, -18, 15, 59, -54, -215, 199, 813, -744, -3135, 2890, 12394, -11538, -50017, 46806, 204893, -192451, -849681, 800974, 3560927, -3367656, -15058478, 14279426, 64171736, -60992032, -275304665, 262199050, 1188070488, -1133572891, -5153913606 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
G.f.: A(x) = Sum_{n>=1} a(n)*x^n = x * Product_{n>=1} 1/(1 + x^n)^((-1)^n*a(n)).
Recurrence: a(n+1) = (1/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d+d)*d*a(d) ) * a(n-k+1).
EXAMPLE
G.f.: A(x) = x + x^2 - x^3 - 2*x^4 + 2*x^5 + 6*x^6 - 5*x^7 - 18*x^8 + 15*x^9 + 59*x^10 - 54*x^11 - 215*x^12 + ...
MATHEMATICA
terms = 36; A[_] = 0; Do[A[x_] = x Exp[Sum[(-1)^k A[-x^k]/k, {k, 1, terms}]] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x]
a[n_] := a[n] = SeriesCoefficient[x Product[1/(1 + x^k)^((-1)^k a[k]), {k, 1, n - 1}], {x, 0, n}]; a[0] = 0; Table[a[n], {n, 0, 36}]
CROSSREFS
Sequence in context: A054917 A111419 A360087 * A174399 A056881 A260322
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Apr 14 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)