The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A077991 Expansion of 1/(1+2*x+2*x^2-2*x^3). 2
1, -2, 2, 2, -12, 24, -20, -32, 152, -280, 192, 480, -1904, 3232, -1696, -6880, 23616, -36864, 12736, 95488, -290176, 414848, -58368, -1293312, 3533056, -4596224, -460288, 17179136, -42630144, 49981440, 19655680, -224534528, 509720576, -531060736, -406388736, 2894340096, -6038024192 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (-1)^n * A077945(n). - G. C. Greubel, Jun 26 2019
MATHEMATICA
LinearRecurrence[{-2, -2, 2}, {1, -2, 2}, 40] (* or *) CoefficientList[ Series[1/(1+2*x+2*x^2-2*x^3), {x, 40, 40}], x] (* G. C. Greubel, Jun 26 2019 *)
PROG
(PARI) Vec(1/(1+2*x+2*x^2-2*x^3)+O(x^40)) \\ Charles R Greathouse IV, Sep 27 2012
(Magma) R<x>:=PowerSeriesRing(Integers(), 40); Coefficients(R!( 1/(1+2*x+2*x^2-2*x^3) )); // G. C. Greubel, Jun 26 2019
(Sage) (1/(1+2*x+2*x^2-2*x^3)).series(x, 40).coefficients(x, sparse=False) # G. C. Greubel, Jun 26 2019
(GAP) a:=[1, -2, 2];; for n in [4..40] do a[n]:=-2*(a[n-1]+a[n-2]-a[n-3]); od; a; # G. C. Greubel, Jun 26 2019
CROSSREFS
Cf. A077945.
Sequence in context: A135322 A106541 A077945 * A336491 A049148 A369077
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Nov 17 2002
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 May 19 00:35 EDT 2024. Contains 372666 sequences. (Running on oeis4.)