OFFSET
0,4
REFERENCES
Roger Bagula, Factoring Double Fibonacci Sequences, 2000
LINKS
FORMULA
G.f.: (1-4*x-3*x^2)/(1-5*x+x^2+x^3) [Sep 28 2009]
MATHEMATICA
F[1] = 1; F[2] = 1; F[3] = 1; F[n__] := F[n] = 5*F[n - 1] - F[n - 2] - F[n - 3] a = Table[Abs[F[n]], {n, 1, 50}]
LinearRecurrence[{5, -1, -1}, {1, 1, 1}, 30] (* Harvey P. Dale, Jan 21 2023 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Jun 05 2005
EXTENSIONS
Definition replaced by recurrence by the Associate Editors of the OEIS, Sep 28 2009
STATUS
approved