A094989 Floor(11^n/6^n).
1, 1, 3, 6, 11, 20, 37, 69, 127, 233, 428, 786, 1441, 2643, 4845, 8884, 16287, 29861, 54745, 100366, 184004, 337341, 618459, 1133843, 2078712, 3810972, 6986783, 12809103, 23483356, 43052820, 78930170, 144705313, 265293074, 486370636
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..900
Programs
-
Magma
[Floor(11^n / 6^n): n in [0..40]]; // Vincenzo Librandi Sep 09 2011
-
Mathematica
Table[ Floor[(11/6)^n], {n, 0, 30}]