login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A251653 A057744 A251708 * A251713 A251744 A251751
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 09 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)