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!)
A123188 a(n) = -5*a(n-1) + 8*a(n-2) + 6*a(n-3) - 4*a(n-4). 1
1, 0, 2, -8, 52, -312, 1920, -11752, 72040, -441448, 2705368, -16579176, 101601976, -622645288, 3815745720, -23383962344, 143303497848, -878204132520, 5381881888440, -32981685665896, 202121044650488, -1238654600718888, 7590823719249208, -46518702391430632 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Llew Mason, Catmull-Rom Splines, 1994.
FORMULA
G.f.: x*(1 + 5*x - 6*x^2 - 4*x^3) / (1 + 5*x - 8*x^2 - 6*x^3 + 4*x^4). - Colin Barker, Apr 01 2018
MAPLE
a[1]:=1: a[2]:=0: a[3]:=2: a[4]:=-8: for n from 5 to 24 do a[n]:=-5*a[n-1]+8*a[n-2]+6*a[n-3]-4*a[n-4] od: seq(a[n], n=1..24);
MATHEMATICA
LinearRecurrence[{-5, 8, 6, -4}, {1, 0, 2, -8}, 30] (* Harvey P. Dale, Jul 08 2017 *)
CoefficientList[Series[(1 + 5*x - 6*x^2 - 4*x^3) / (1 + 5*x - 8*x^2 - 6*x^3 + 4*x^4), {x, 0, 25}], x] (* Stefano Spezia, Oct 04 2018 *)
PROG
(PARI) Vec(x*(1 + 5*x - 6*x^2 - 4*x^3) / (1 + 5*x - 8*x^2 - 6*x^3 + 4*x^4) + O(x^30)) \\ Colin Barker, Apr 01 2018
CROSSREFS
Sequence in context: A013555 A018987 A030518 * A027329 A136794 A125787
KEYWORD
sign,easy
AUTHOR
Roger L. Bagula, Oct 03 2006
EXTENSIONS
Edited by N. J. A. Sloane, Oct 08 2006
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 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)