OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,9).
FORMULA
a(n) = 3^n*Fibonacci(n+1) = 3^n*A000045(n+1).
a(n) = Sum_{k=0..n} 2^k*A016095(n,k).
G.f.: 1/(1-3*x-9*x^2).
Limit_{n->oo} a(n+1)/a(n) = 3*(1+sqrt(5))/2.
a(n) = A099012(n+1). - R. J. Mathar, Aug 02 2008
a(n) = A085504(n) for n >= 2. - Georg Fischer, Nov 03 2018
MAPLE
with(combinat); seq(3^n*fibonacci(n+1), n=0..25); # G. C. Greubel, Oct 03 2019
MATHEMATICA
Table[3^n*Fibonacci[n+1], {n, 0, 25}] (* G. C. Greubel, Oct 03 2019 *)
LinearRecurrence[{3, 9}, {1, 3}, 30] (* Harvey P. Dale, Apr 28 2020 *)
PROG
(Sage) [lucas_number1(n, 3, -9) for n in range(1, 23)] # Zerinvary Lajos, Apr 22 2009
(PARI) vector(26, n, 3^(n-1)*fibonacci(n) ) \\ G. C. Greubel, Oct 03 2019
(Magma) [3^n*Fibonacci(n+1): n in [0..25]]; // G. C. Greubel, Oct 03 2019
(GAP) List([0..25], n-> 3^n*Fibonacci(n+1) ); # G. C. Greubel, Oct 03 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Philippe Deléham, Oct 15 2006
EXTENSIONS
Corrected by T. D. Noe, Nov 07 2006
STATUS
approved