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!)
A351184 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 + 3*x)) / (1 + 3*x). 4
1, 1, 1, -2, 4, -11, 55, -359, 2359, -15230, 100840, -716555, 5580145, -47230091, 425472229, -4013326982, 39379161136, -402010392971, 4279164575167, -47533936734179, 550239127112107, -6618018093867506, 82447377648018700, -1061324336149876667, 14095604842846277617 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 3rd-order inverse binomial transform.
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * (-3)^k * a(n-k-2).
MATHEMATICA
nmax = 24; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x/(1 + 3 x)]/(1 + 3 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = a[1] = 1; a[n_] := a[n] = Sum[Binomial[n - 2, k] (-3)^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 24}]
CROSSREFS
Sequence in context: A352969 A091233 A173312 * A156434 A007903 A182100
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Feb 04 2022
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 12:15 EDT 2024. Contains 371969 sequences. (Running on oeis4.)