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!)
A308024 G.f. A(x) satisfies: A(x) = x * (1 + (1/(1 + x)) * (A(x/(1 + x)) + A(x^2/(1 + x)^2) + A(x^3/(1 + x)^3) + ...)). 1
1, 1, 0, -2, 4, 0, -24, 68, 20, -936, 3800, -2172, -64120, 417752, -959852, -5464092, 68816400, -328509112, 8361828, 13473157664, -119068537700, 448312242012, 1868795480588, -43889516937276, 348963546501928, -1006637409183472, -12316833304447344, 217304253286437480 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(1) = 1; a(n+1) = Sum_{k=1..n} (-1)^(n-k)*binomial(n,k) * Sum_{d|k} a(d).
MATHEMATICA
terms = 28; A[_] = 0; Do[A[x_] = x (1 + 1/(1 + x) Sum[A[x^k/(1 + x)^k], {k, 1, terms}]) + O[x]^(terms + 1) // Normal, terms + 1]; Rest[CoefficientList[A[x], x]]
a[n_] := a[n] = Sum[(-1)^(n - k - 1) Binomial[n - 1, k] Sum[a[d], {d, Divisors[k]}], {k, 1, n - 1}]; a[1] = 1; Table[a[n], {n, 1, 28}]
CROSSREFS
Sequence in context: A231915 A009170 A009625 * A347281 A055871 A012716
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 09 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 25 13:38 EDT 2024. Contains 371970 sequences. (Running on oeis4.)