login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A293325
Least integer k such that k/2^n > sqrt(3).
2
2, 4, 7, 14, 28, 56, 111, 222, 444, 887, 1774, 3548, 7095, 14189, 28378, 56756, 113512, 227024, 454047, 908094, 1816187, 3632374, 7264748, 14529496, 29058991, 58117982, 116235963, 232471925, 464943849, 929887697, 1859775394, 3719550787, 7439101574
OFFSET
0,1
LINKS
FORMULA
a(n) = ceiling(r*2^n), where r = sqrt(3).
a(n) = A094386(n) + 1.
MATHEMATICA
z = 120; r = Sqrt[3];
Table[Floor[r*2^n], {n, 0, z}]; (* A094386 *)
Table[Ceiling[r*2^n], {n, 0, z}]; (* A293325 *)
Table[Round[r*2^n], {n, 0, z}]; (* A293326 *)
PROG
(Python)
from math import isqrt
def A293325(n): return 1+isqrt(3*(1<<(n<<1))) # Chai Wah Wu, Jul 28 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 09 2017
STATUS
approved