A221944 Floor(sqrt(2*3^n)).
1, 2, 4, 7, 12, 22, 38, 66, 114, 198, 343, 595, 1030, 1785, 3092, 5357, 9278, 16071, 27835, 48213, 83507, 144639, 250523, 433919, 751571, 1301759, 2254713, 3905277, 6764139, 11715833, 20292418, 35147500, 60877256, 105442501, 182631769, 316327504, 547895309, 948982513, 1643685929, 2846947541, 4931057788
Offset: 0
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Programs
-
Magma
[Floor(Sqrt(2*3^n)): n in [0..40]]; // Vincenzo Librandi, Mar 11 2014
-
Mathematica
Floor[Sqrt[2 3^Range[0,40]]] (* Harvey P. Dale, Mar 09 2014 *)
-
PARI
a(n)=sqrtint(2*3^n) \\ Charles R Greathouse IV, Apr 18 2013