[go: up one dir, main page]

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!)
Search: a293319 -id:a293319
Displaying 1-2 of 2 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A293320 Least integer k such that k/2^n > tau^2, where tau = (1+sqrt(5))/2 = golden ratio. +10
3
3, 6, 11, 21, 42, 84, 168, 336, 671, 1341, 2681, 5362, 10724, 21447, 42894, 85788, 171576, 343151, 686302, 1372604, 2745208, 5490416, 10980831, 21961661, 43923322, 87846644, 175693287, 351386574, 702773148, 1405546296, 2811092591, 5622185181, 11244370362 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = ceiling(r*2^n), where r = (3+sqrt(5))/2.
a(n) = A293319(n) + 1.
MATHEMATICA
z = 120; r = 1+GoldenRatio;
Table[Floor[r*2^n], {n, 0, z}]; (* A293319 *)
Table[Ceiling[r*2^n], {n, 0, z}]; (* A293320 *)
Table[Round[r*2^n], {n, 0, z}]; (* A293321 *)
PROG
(Magma) [Ceiling((2^n*(3+Sqrt(5)))/2): n in [0..33]]; // Vincenzo Librandi, Oct 08 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 07 2017
STATUS
approved
A293321 The integer k that minimizes |k/2^n - tau^2|, where tau = (1+sqrt(5))/2 = golden ratio. +10
3
3, 5, 10, 21, 42, 84, 168, 335, 670, 1340, 2681, 5362, 10723, 21447, 42894, 85788, 171575, 343151, 686302, 1372604, 2745208, 5490415, 10980830, 21961661, 43923322, 87846643, 175693287, 351386574, 702773148, 1405546295, 2811092590, 5622185181, 11244370361 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = floor(1/2 + r*2^n), where r = (3+sqrt(5))/2.
a(n) = A293319(n) if (fractional part of r*2^n) < 1/2, else a(n) = A293316(n).
MATHEMATICA
z = 120; r = 1+GoldenRatio;
Table[Floor[r*2^n], {n, 0, z}]; (* A293319 *)
Table[Ceiling[r*2^n], {n, 0, z}]; (* A293320 *)
Table[Round[r*2^n], {n, 0, z}]; (* A293321 *)
PROG
(PARI) a(n) = (2^n*(3+sqrt(5))+1)\2; \\ Altug Alkan, Oct 08 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 07 2017
STATUS
approved
page 1

Search completed in 0.008 seconds

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 August 30 05:37 EDT 2024. Contains 375526 sequences. (Running on oeis4.)