OFFSET
1,3
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (1,1,0,0,0,1,-1,-1).
FORMULA
MATHEMATICA
z = 120; r = 3/4; f[n_] := Fibonacci[n];
Table[Floor[r*f[n]], {n, 1, z}]; (* A293631 *)
Table[Ceiling[r*f[n]], {n, 1, z}]; (* A293632 *)
Table[Round[r*f[n]], {n, 1, z}]; (* A293633 *)
LinearRecurrence[{1, 1, 0, 0, 0, 1, -1, -1}, {1, 1, 2, 2, 4, 6, 10, 16}, 40] (* Harvey P. Dale, Mar 30 2019 *)
PROG
(PARI) a(n) = round(3*fibonacci(n)/4); \\ Andrew Howroyd, Feb 12 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 14 2017
EXTENSIONS
Offset changed by Clark Kimberling, Feb 12 2018
STATUS
approved