OFFSET
0,2
LINKS
G. C. Greubel, 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.: 14*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 14 * A000045(n). - Vladimir Joseph Stephan Orlovsky, Jun 08 2011
MATHEMATICA
a={}; b=0; c=14; 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 *)
Table[14*Fibonacci[n], {n, 0, 50}] (* or *) LinearRecurrence[{1, 1}, {0, 14}, 50] (* G. C. Greubel, Aug 26 2017 *)
PROG
(PARI) for(n=0, 50, print1(14*fibonacci(n), ", ")) \\ G. C. Greubel, Aug 26 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved