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!)
A336971 G.f. A(x) satisfies: A(x) = 1 - x^3 * A(x/(1 - x)) / (1 - x). 2
1, 0, 0, -1, -1, -1, 0, 4, 15, 40, 86, 134, 16, -1060, -6119, -25187, -86678, -250846, -537819, -175233, 6998009, 55632942, 310923272, 1465146781, 6011047682, 20719304348, 49356093300, -36579100806, -1549214884054, -13807417413199, -92912464763743 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
LINKS
FORMULA
a(0) = 1, a(1) = a(2) = 0; a(n) = -Sum_{k=0..n-3} binomial(n-3,k) * a(k).
MATHEMATICA
nmax = 30; A[_] = 0; Do[A[x_] = 1 - x^3 A[x/(1 - x)]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n - 3, k] a[k], {k, 0, n - 3}]; Table[a[n], {n, 0, 30}]
CROSSREFS
Sequence in context: A336995 A053698 A162867 * A059140 A031164 A116600
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 09 2020
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 March 28 12:26 EDT 2024. Contains 371254 sequences. (Running on oeis4.)