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!)
A081013 a(n) = Fibonacci(4*n+3) - 2, or Fibonacci(2*n)*Lucas(2*n+3). 1
0, 11, 87, 608, 4179, 28655, 196416, 1346267, 9227463, 63245984, 433494435, 2971215071, 20365011072, 139583862443, 956722026039, 6557470319840, 44945570212851, 308061521170127, 2111485077978048, 14472334024676219 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
Hugh C. Williams, Edouard Lucas and Primality Testing, John Wiley and Sons, 1998, p. 75.
LINKS
FORMULA
a(n) = 8*a(n-1) - 8*a(n-2) + a(n-3).
From R. J. Mathar, Sep 03 2010: (Start)
G.f.: x*(11 - x)/((1-x)*(1-7*x+x^2)).
a(n) = A033891(n) - 2.
a(n+1) - a(n) = A056914(n+1), n>0. (End)
a(n) = 7*a(n-1) - a(n-2) + 10, n>=2. - R. J. Mathar, Nov 07 2015
From Rigoberto Florez, Apr 20 2019: (Start)
a(n) = Sum_{i=0..2n} F(i)*L(i+2), F(i) = A000045(i) and L(i) = A000032(i).
a(n) = (Sum_{i=1..2n-1} binomial(2n-1+i,2n-1-i)) - 1. (End)
MAPLE
with(combinat) for n from 0 to 40 do printf(`%d, `, fibonacci(4*n+3)-2) od # James A. Sellers, Mar 03 2003
MATHEMATICA
LinearRecurrence[{8, -8, 1}, {0, 11, 87}, 40] (* Harvey P. Dale, Dec 05 2013 *)
Table[Fibonacci[2n] LucasL[2n+3], {n, 1, 40}] (* Rigoberto Florez, Apr 20 2019 *)
Table[Sum[Binomial[2n-1+i, 2n-1-i], {i, 1, 2n-1}]-1, {n, 1, 40}] (* Rigoberto Florez, Apr 20 2019 *)
PROG
(Magma) [Fibonacci(4*n+3)-2: n in [0..40]]; // Vincenzo Librandi, Apr 20 2011
(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
(PARI) vector(40, n, n--; fibonacci(4*n+3)-2) \\ G. C. Greubel, Jul 14 2019
(Magma) [Fibonacci(4*n+3)-2: n in [0..40]]; // G. C. Greubel, Jul 14 2019
(Sage) [fibonacci(4*n+3)-2 for n in (0..40)] # G. C. Greubel, Jul 14 2019
(GAP) List([0..40], n-> Fibonacci(4*n+3) -2); # G. C. Greubel, Jul 14 2019
CROSSREFS
Cf. A000045 (Fibonacci numbers), A000032 (Lucas numbers).
Sequence in context: A357535 A232078 A016222 * A163616 A224182 A119383
KEYWORD
nonn,easy
AUTHOR
R. K. Guy, Mar 01 2003
STATUS
approved

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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)