A093568 Let M = the 2 X 2 matrix [0 1 / -1 2+sqrt(8)]. Perform the operation M^n * [1 1] = [x y]; then a(n) = floor(x), a(n+1) = floor(y).
1, 3, 17, 80, 371, 1714, 7904, 36451, 168098, 775200, 3574898, 16485939, 76026256, 350601298, 1616826563, 7456127936, 34384543809, 158567136067, 731245317072, 3372197587729, 15551164985523, 71715469249777, 330721752004000
Offset: 1
Keywords
Examples
M^5 * [1 1] = [371.676... 1714.013...]. a(5) = 371, a(6) = 1714. a(10)/a(9) = 775200/168098 = 4.611595...
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..200
Programs
-
Mathematica
Table[ Floor[ MatrixPower[{{0, 1}, {-1, 2 + Sqrt[8]}}, n].{1, 1}][[1]], {n, 24}] (* Robert G. Wilson v, Apr 09 2004 *)
Comments