cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A081013 a(n) = Fibonacci(4*n+3) - 2, or Fibonacci(2*n)*Lucas(2*n+3).

This page as a plain text file.
%I A081013 #65 Jul 02 2025 16:02:01
%S A081013 0,11,87,608,4179,28655,196416,1346267,9227463,63245984,433494435,
%T A081013 2971215071,20365011072,139583862443,956722026039,6557470319840,
%U A081013 44945570212851,308061521170127,2111485077978048,14472334024676219
%N A081013 a(n) = Fibonacci(4*n+3) - 2, or Fibonacci(2*n)*Lucas(2*n+3).
%D A081013 Hugh C. Williams, Edouard Lucas and Primality Testing, John Wiley and Sons, 1998, p. 75.
%H A081013 G. C. Greubel, <a href="/A081013/b081013.txt">Table of n, a(n) for n = 0..1000</a>
%H A081013 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (8,-8,1).
%F A081013 a(n) = 8*a(n-1) - 8*a(n-2) + a(n-3).
%F A081013 From _R. J. Mathar_, Sep 03 2010: (Start)
%F A081013 G.f.: x*(11 - x)/((1-x)*(1-7*x+x^2)).
%F A081013 a(n) = A033891(n) - 2.
%F A081013 a(n+1) - a(n) = A056914(n+1), n>0. (End)
%F A081013 a(n) = 7*a(n-1) - a(n-2) + 10, n>=2. - _R. J. Mathar_, Nov 07 2015
%F A081013 From _Rigoberto Florez_, Apr 20 2019: (Start)
%F A081013 a(n) = Sum_{i=0..2n} F(i)*L(i+2), F(i) = A000045(i) and L(i) = A000032(i).
%F A081013 a(n) = (Sum_{i=1..2n-1} binomial(2n-1+i,2n-1-i)) - 1. (End)
%F A081013 Product_{n>=1} (1 + 1/a(n)) = 2*(1-1/sqrt(5)) = 2*A322159. - _Amiram Eldar_, Nov 28 2024
%p A081013 with(combinat) for n from 0 to 40 do printf(`%d,`,fibonacci(4*n+3)-2) od # _James Sellers_, Mar 03 2003
%t A081013 LinearRecurrence[{8,-8,1},{0,11,87},40] (* _Harvey P. Dale_, Dec 05 2013 *)
%t A081013 Table[Fibonacci[2n] LucasL[2n+3], {n,1,40}] (* _Rigoberto Florez_, Apr 20 2019 *)
%t A081013 Table[Sum[Binomial[2n-1+i, 2n-1-i], {i, 1, 2n-1}]-1, {n, 1, 40}] (* _Rigoberto Florez_, Apr 20 2019 *)
%o A081013 (Magma) [Fibonacci(4*n+3)-2: n in [0..40]]; // _Vincenzo Librandi_, Apr 20 2011
%o A081013 (PARI) my(x='x+O('x^40)); concat([0], Vec(x*(11-x)/((1-x)*(1-7*x+x^2)))) \\ _G. C. Greubel_, Dec 24 2017
%o A081013 (PARI) vector(40, n, n--; fibonacci(4*n+3)-2) \\ _G. C. Greubel_, Jul 14 2019
%o A081013 (Magma) [Fibonacci(4*n+3)-2: n in [0..40]]; // _G. C. Greubel_, Jul 14 2019
%o A081013 (Sage) [fibonacci(4*n+3)-2 for n in (0..40)] # _G. C. Greubel_, Jul 14 2019
%o A081013 (GAP) List([0..40], n-> Fibonacci(4*n+3) -2); # _G. C. Greubel_, Jul 14 2019
%Y A081013 Cf. A000045 (Fibonacci numbers), A000032 (Lucas numbers), A322159.
%K A081013 nonn,easy
%O A081013 0,2
%A A081013 _R. K. Guy_, Mar 01 2003