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!)
A293315 The integer k that minimizes |k/2^n - r|, where r = golden ratio. 3
2, 3, 6, 13, 26, 52, 104, 207, 414, 828, 1657, 3314, 6627, 13255, 26510, 53020, 106039, 212079, 424158, 848316, 1696632, 3393263, 6786526, 13573053, 27146106, 54292211, 108584423, 217168846, 434337692, 868675383, 1737350766, 3474701533, 6949403065 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = floor(1/2 + r*2^n), where r = (1+sqrt(5))/2.
a(n) = A293313(n) if (fractional part of r*2^n) < 1/2, else a(n) = A293313(n).
MAPLE
A293315:=n->floor(1/2+2^n*(1+sqrt(5))/2): seq(A293315(n), n=0..40); # Wesley Ivan Hurt, Oct 06 2017
MATHEMATICA
z = 120; r = GoldenRatio;
Table[Floor[r*2^n], {n, 0, z}]; (* A293313 *)
Table[Ceiling[r*2^n], {n, 0, z}]; (* A293314 *)
Table[Round[r*2^n], {n, 0, z}]; (* A293315 *)
PROG
(PARI) a(n) = (2^n*(1+sqrt(5))+1)\2; \\ Altug Alkan, Oct 06 2017
(Magma) [Floor((2^n*(1+Sqrt(5))+1)/2): n in [0..33]]; // Vincenzo Librandi, Oct 08 2017
CROSSREFS
Sequence in context: A079662 A290991 A007910 * A052702 A058766 A127601
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 06 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 May 10 19:29 EDT 2024. Contains 372388 sequences. (Running on oeis4.)