A094983 a(n) = floor(6^n/5^n).
1, 1, 1, 1, 2, 2, 2, 3, 4, 5, 6, 7, 8, 10, 12, 15, 18, 22, 26, 31, 38, 46, 55, 66, 79, 95, 114, 137, 164, 197, 237, 284, 341, 410, 492, 590, 708, 850, 1020, 1224, 1469, 1763, 2116, 2539, 3047, 3657, 4388, 5266, 6319, 7583, 9100, 10920, 13104, 15725, 18870, 22644
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Magma
[Floor(6^n / 5^n): n in [0..60]]; // Vincenzo Librandi, Sep 08 2011
-
Mathematica
Table[ Floor[(6/5)^n], {n, 0, 30}]