A094992 a(n) = floor(10^n/7^n).
1, 1, 2, 2, 4, 5, 8, 12, 17, 24, 35, 50, 72, 103, 147, 210, 300, 429, 614, 877, 1253, 1790, 2557, 3653, 5219, 7456, 10652, 15217, 21739, 31056, 44366, 63381, 90544, 129349, 184784, 263978, 377112, 538731, 769616, 1099452, 1570646, 2243780, 3205400
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Magma
[Floor(10^n / 7^n): n in [0..50]]; // Vincenzo Librandi, Sep 09 2011
-
Mathematica
Table[ Floor[(10/7)^n], {n, 0, 30}]