A155110 a(n) = 8*Fibonacci(2n+1).
8, 16, 40, 104, 272, 712, 1864, 4880, 12776, 33448, 87568, 229256, 600200, 1571344, 4113832, 10770152, 28196624, 73819720, 193262536, 505967888, 1324641128, 3467955496, 9079225360, 23769720584, 62229936392, 162920088592, 426530329384, 1116670899560
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Index entries for linear recurrences with constant coefficients, signature (3,-1).
Programs
-
Magma
[8*Fibonacci(2*n+1): n in [0..30]]; // Vincenzo Librandi, Aug 07 2011
-
Maple
A155110 := proc(n) 8*combinat[fibonacci](2*n+1) ; end: seq(A155110(n),n=0..50) ; # R. J. Mathar, Oct 06 2009
-
Mathematica
8*Fibonacci[2*Range[0,30]+1] (* G. C. Greubel, Apr 21 2021 *)
-
Sage
[8*fibonacci(2*n+1) for n in (0..30)] # G. C. Greubel, Apr 21 2021
Formula
Extensions
Comments converted to formulas by R. J. Mathar, Oct 06 2009