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

A346059
G.f. A(x) satisfies: A(x) = 1 - x * A(x/(1 - x)) / (1 - x)^4.
3
1, -1, -3, -2, 15, 62, 56, -566, -3318, -6241, 33022, 330939, 1211873, -1330691, -47459905, -310788796, -675462411, 7151217040, 93213242926, 515144576280, 122725585740, -27551616750331, -296570472858772, -1477869678576483, 3416889475636695, 146832017085068163, 1522825949942199537
OFFSET
0,3
LINKS
FORMULA
a(n+1) = -Sum_{k=0..n} binomial(n+3,k+3) * a(k).
MATHEMATICA
nmax = 26; A[_] = 0; Do[A[x_] = 1 - x A[x/(1 - x)]/(1 - x)^4 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n + 2, k + 3] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 26}]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 03 2021
STATUS
approved