A094988 a(n) = floor(7^n/6^n).
1, 1, 1, 1, 1, 2, 2, 2, 3, 4, 4, 5, 6, 7, 8, 10, 11, 13, 16, 18, 21, 25, 29, 34, 40, 47, 55, 64, 74, 87, 101, 118, 138, 161, 188, 220, 257, 299, 349, 408, 476, 555, 648, 756, 882, 1029, 1201, 1401, 1634, 1907, 2225, 2595, 3028, 3533, 4122, 4809, 5610, 6545, 7636, 8909
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Magma
[Floor(7^n / 6^n): n in [0..60]]; // Vincenzo Librandi, Sep 09 2011
-
Mathematica
Table[ Floor[(7/6)^n], {n, 0, 30}]