A022136 Fibonacci sequence beginning 5, 11.
5, 11, 16, 27, 43, 70, 113, 183, 296, 479, 775, 1254, 2029, 3283, 5312, 8595, 13907, 22502, 36409, 58911, 95320, 154231, 249551, 403782, 653333, 1057115, 1710448, 2767563, 4478011, 7245574, 11723585, 18969159, 30692744, 49661903, 80354647, 130016550
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Tanya Khovanova, Recursive Sequences
- StackExchange, nu_5(5F_(n+2)+F_n), Jun 2025.
- Index entries for linear recurrences with constant coefficients, signature (1,1).
Programs
-
Mathematica
Transpose[NestList[{Last[#],Total[#]}&,{5,11},40]][[1]] (* Harvey P. Dale, Apr 04 2011 *) LinearRecurrence[{1, 1}, {5, 11}, 40] (* Vincenzo Librandi, May 03 2017 *)
Formula
G.f.: (5+6*x)/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 2*Lucas(n-1) + 7*Fibonacci(n+1). - Lechoslaw Ratajczak, May 01 2017
a(n) = Fibonacci(n+6) - Fibonacci(n+1) - Lucas(n). - Greg Dresden and Aamen Muharram, Jul 22 2022
Comments