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!)
A345233 G.f. A(x) satisfies: A(x) = x + x^2 / exp(A(x) - A(x^2)/2 + A(x^3)/3 - A(x^4)/4 + ...). 1
1, 1, -1, 0, 1, 0, -2, 1, 3, -4, -3, 11, -2, -22, 21, 32, -72, -18, 180, -95, -350, 496, 449, -1542, 125, 3638, -3161, -6393, 12780, 5636, -35993, 14509, 77907, -97880, -116880, 337924, 24514, -869531, 631306, 1692540, -2949009, -1933940, 9035577, -2312868, -21166895 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,7
LINKS
FORMULA
G.f.: x + x^2 / Product_{n>=1} (1 + x^n)^a(n).
a(n+2) = (1/n) * Sum_{k=1..n} ( Sum_{d|k} (-1)^(k/d) * d * a(d) ) * a(n-k+2).
MATHEMATICA
nmax = 45; A[_] = 0; Do[A[x_] = x + x^2 Exp[Sum[(-1)^k A[x^k]/k, {k, 1, nmax}]] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
a[1] = a[2] = 1; a[n_] := a[n] = (1/(n - 2)) Sum[Sum[(-1)^(k/d) d a[d], {d, Divisors[k]}] a[n - k], {k, 1, n - 2}]; Table[a[n], {n, 1, 45}]
CROSSREFS
Sequence in context: A077608 A002124 A097564 * A128270 A367860 A151550
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jun 11 2021
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 23 08:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)