A094985 a(n) = floor(8^n/5^n).
1, 1, 2, 4, 6, 10, 16, 26, 42, 68, 109, 175, 281, 450, 720, 1152, 1844, 2951, 4722, 7555, 12089, 19342, 30948, 49517, 79228, 126765, 202824, 324518, 519229, 830767, 1329227, 2126764, 3402823, 5444517, 8711228, 13937965, 22300745, 35681192
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Magma
[Floor(8^n / 5^n): n in [0..50]]; // Vincenzo Librandi, Sep 08 2011
-
Mathematica
Table[ Floor[(8/5)^n], {n, 0, 30}]