A094993 a(n) = floor(11^n/7^n).
1, 1, 2, 3, 6, 9, 15, 23, 37, 58, 91, 144, 226, 356, 559, 879, 1382, 2172, 3414, 5365, 8431, 13249, 20820, 32717, 51412, 80791, 126958, 199505, 313509, 492657, 774175, 1216561, 1911739, 3004161, 4720825, 7418439, 11657548, 18319004, 28787007
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..900
Programs
-
Magma
[Floor(11^n / 7^n): n in [0..50]]; // Vincenzo Librandi, Sep 09 2011
-
Mathematica
Table[ Floor[(11/7)^n], {n, 0, 30}]
-
Maxima
A094993(n):=floor(11^n/7^n)$ makelist(A094993(n),n,0,60); /* Martin Ettl, Oct 25 2012 */