A094991 a(n) = floor(9^n/7^n).
1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12, 15, 20, 26, 33, 43, 55, 71, 92, 118, 152, 195, 251, 323, 416, 535, 688, 884, 1137, 1462, 1880, 2418, 3109, 3997, 5139, 6607, 8495, 10923, 14043, 18056, 23215, 29848, 38376, 49341, 63439, 81564, 104868, 134831, 173354, 222884
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Magma
[Floor(9^n / 7^n): n in [0..60]]; // Vincenzo Librandi, Sep 09 2011
-
Mathematica
Table[ Floor[(9/7)^n], {n, 0, 30}]