A129798 a(n) = floor(8^n/n).
8, 32, 170, 1024, 6553, 43690, 299593, 2097152, 14913080, 107374182, 780903144, 5726623061, 42288908760, 314146179364, 2345624805922, 17592186044416, 132458812569720, 1000799917193443, 7585009898729256
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..300
Programs
-
Magma
[Floor(8^n / n): n in [1..25]]; // Vincenzo Librandi, May 08 2011
-
Mathematica
Table[Floor[8^n/n],{n,20}] (* Harvey P. Dale, Aug 03 2019 *)