OFFSET
1,2
COMMENTS
Lim_{n -> oo} a(n)/a(n-1) tends to phi^2.
a(n) = Product of sum of first n Fibonacci numbers and Fibonacci number(n). - Vladimir Joseph Stephan Orlovsky, Oct 13 2009
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (3,1,-5,-1,1).
FORMULA
From R. J. Mathar, Sep 06 2008: (Start)
G.f.: (1-x+x^2)/((1+x)*(1-3*x+x^2)*(1-x-x^2)).
a(n) = Fibonacci(n)*Sum_{k=0..n} Fibonacci(k). - Paul Barry, Jan 05 2009
EXAMPLE
a(5) = 60 = F(5) * (F(7)-1) = 5*12.
a(5) = 60 = sum of row 5 terms of triangle A143211: (5 + 5 + 10 + 15 + 25).
MATHEMATICA
LinearRecurrence[{3, 1, -5, -1, 1}, {1, 2, 8, 21, 60}, 40] (* Vladimir Joseph Stephan Orlovsky, Oct 13 2009 *)
Table[Fibonacci[n](Fibonacci[n+2]-1), {n, 30}] (* Harvey P. Dale, Dec 14 2012 *)
PROG
(Magma) [Fibonacci(n)*(Fibonacci(n+2)-1): n in [1..40]]; // G. C. Greubel, Jul 21 2024
(SageMath) [fibonacci(n)*(fibonacci(n+2)-1) for n in range(1, 41)] # G. C. Greubel, Jul 21 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Jul 30 2008
STATUS
approved