OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Tanya Khovanova, Recursive Sequences
Index entries for linear recurrences with constant coefficients, signature (1, 1).
FORMULA
G.f.: (5+13*x)/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = a(n-1) + a(n-2). - Wesley Ivan Hurt, Oct 02 2021
MATHEMATICA
a={}; b=5; c=18; AppendTo[a, b]; AppendTo[a, c]; Do[b=b+c; AppendTo[a, b]; c=b+c; AppendTo[a, c], {n, 4!}]; a (* Vladimir Joseph Stephan Orlovsky, Sep 17 2008 *)
LinearRecurrence[{1, 1}, {5, 18}, 40] (* Harvey P. Dale, Jul 19 2014 *)
CoefficientList[Series[(5 + 13 x)/(1 - x - x^2), {x, 0, 50}], x] (* Vincenzo Librandi, Jul 23 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved