login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A080144 a(n) = F(4)*F(n)*F(n+1) + F(5)*F(n+1)^2 if n odd, a(n) = F(4)*F(n)*F(n+1) + F(5)*F(n+1)^2 - F(5) if n even, where F(n) is the n-th Fibonacci number (A000045). 10

%I #40 Sep 08 2022 08:45:09

%S 0,8,21,63,165,440,1152,3024,7917,20735,54285,142128,372096,974168,

%T 2550405,6677055,17480757,45765224,119814912,313679520,821223645,

%U 2149991423,5628750621,14736260448,38580030720,101003831720

%N a(n) = F(4)*F(n)*F(n+1) + F(5)*F(n+1)^2 if n odd, a(n) = F(4)*F(n)*F(n+1) + F(5)*F(n+1)^2 - F(5) if n even, where F(n) is the n-th Fibonacci number (A000045).

%C The present sequence is a member of the m-family of sums b(m,n) := Sum_{k=1..n} F(k+m)*F(k) for m >= 0, n >= 0 (see the B. Cloitre formula given below (m=5)). These sums are (F(m)*A027941(n) + L(m)*A001654(n))/2, with F = A000045 and the L = A000032. Proof by induction on m using the recurrence. - _Wolfdieter Lang_, Jul 27 2012

%C The o.g.f. of b(m,n) is A(m,x) = x*(F(m+1) - F(m-1)*x)/((1-x^2)*(1-3*x+x^2)), m >= 0, with F(-1)=1. - _Wolfdieter Lang_, Jul 30 2012

%C b(m,n) = ((-1)^(n+1)*L(m) - 5*F(m) + 2*L(m + 2*n + 1))/10. - _Ehren Metcalfe_, Aug 21 2017

%H G. C. Greubel, <a href="/A080144/b080144.txt">Table of n, a(n) for n = 0..1000</a>

%H S. Falcon, <a href="https://www.researchgate.net/publication/298789400_On_the_Sequences_of_Products_of_Two_k-Fibonacci_Numbers">On the Sequences of Products of Two k-Fibonacci Numbers</a>, American Review of Mathematics and Statistics, March 2014, Vol. 2, No. 1, pp. 111-120.

%F G.f.: x*(8-3*x)/((1-x^2)*(1-3*x+x^2)) (see the comment section). - _Wolfdieter Lang_, Jul 30 2012

%F a(n) = Sum_{i=0..n} A000045(i+5)*A000045(i). - _Benoit Cloitre_, Jun 14 2004

%F a(n) = (5*A027941(n) + 11*A001654(n))/2, n >= 0. See A080143 and A080097. See the comment section for the general formula for such sums. - _Wolfdieter Lang_, Jul 27 2012

%F a(n) = (2*Lucas(2*n + 6) + 11*(-1)^(n+1) - 25)/10. - _Ehren Metcalfe_, Aug 21 2017

%F a(n) = (2*Fibonacci(n+3)^2 - 5 - 3*(-1)^n)/2. - _G. C. Greubel_, Jul 23 2019

%t CoefficientList[Series[x*(8+5*x-3*x^2)/((1-x^2)*(1-2x-2x^2+x^3)), {x, 0, 30}], x]

%t With[{F=Fibonacci}, Table[(2*F[n + 3]^2 -5-3*(-1)^n)/2, {n,0,30}]] (* _G. C. Greubel_, Jul 23 2019 *)

%o (PARI) my(x='x+O('x^30)); concat([0],Vec(x*(8-3*x)/((1-x^2)*(1-3*x+x^2)) )) \\ _G. C. Greubel_, Mar 04 2017

%o (PARI) vector(30, n, n--; f=fibonacci; (2*f(n+3)^2 -5-3*(-1)^n)/2) \\ _G. C. Greubel_, Jul 23 2019

%o (Magma) F:=Fibonacci; [(2*F(n+3)^2 -5-3*(-1)^n)/2: n in [0..30]]; // _G. C. Greubel_, Jul 23 2019

%o (Sage) f=fibonacci; [(2*f(n+3)^2 -5-3*(-1)^n)/2 for n in (0..30)] # _G. C. Greubel_, Jul 23 2019

%o (GAP) F:=Fibonacci;; List([0..30], n-> (2*F(n+3)^2 -5-3*(-1)^n)/2); # _G. C. Greubel_, Jul 23 2019

%Y Cf. A000032, A000045, A059840, A064831, A080143.

%K nonn,easy

%O 0,2

%A Mario Catalani (mario.catalani(AT)unito.it), Jan 31 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 15:48 EDT 2024. Contains 371780 sequences. (Running on oeis4.)