A017913 Powers of sqrt(3) rounded down.
1, 1, 3, 5, 9, 15, 27, 46, 81, 140, 243, 420, 729, 1262, 2187, 3787, 6561, 11363, 19683, 34091, 59049, 102275, 177147, 306827, 531441, 920482, 1594323, 2761448, 4782969, 8284345, 14348907, 24853035, 43046721
Offset: 0
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Magma
[Floor(Sqrt(3^n)): n in [0..40]]; // Vincenzo Librandi, Nov 20 2011
-
Mathematica
Floor[(Sqrt[3])^Range[0,40]] (* Vincenzo Librandi, Nov 20 2011 *)
-
PARI
a(n)=sqrtint(3^n) \\ Charles R Greathouse IV, Nov 18 2011