The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A184516 Lower s-Wythoff sequence, where s=4n-2. Complement of A184517. 3

%I #12 Sep 08 2022 08:45:55

%S 1,2,4,5,6,7,9,10,11,12,13,15,16,17,18,20,21,22,23,25,26,27,28,30,31,

%T 32,33,34,36,37,38,39,41,42,43,44,46,47,48,49,51,52,53,54,56,57,58,59,

%U 60,62,63,64,65,67,68,69,70,72,73,74,75,77,78,79,80,81,83,84,85,86,88,89,90,91,93,94,95,96,98,99,100,101,102,104,105,106,107,109,110,111,112,114,115,116,117,119,120,121,122,123,125,126,127,128,130,131,132,133,135,136,137,138,140,141,142,143,145,146,147,148

%N Lower s-Wythoff sequence, where s=4n-2. Complement of A184517.

%C See A184117 for the definition of lower and upper s-Wythoff sequences.

%H G. C. Greubel, <a href="/A184516/b184516.txt">Table of n, a(n) for n = 1..10000</a>

%H Clark Kimberling, <a href="https://www.fq.math.ca/Papers1/49-3/KimberlingGeneralized.pdf">Beatty Sequences and Wythoff Sequences, Generalized</a>, Fibonacci Quart. 49 (2011), no. 3, 195-200.

%t k = 4; r = 2; d = Sqrt[4 + k^2];

%t a[n_] := Floor[(1/2) (d + 2 - k) (n + r/(d + 2))];

%t b[n_] := Floor[(1/2) (d + 2 + k) (n - r/(d + 2))];

%t Table[a[n], {n, 120}] (* A184516 *)

%t Table[b[n], {n, 120}] (* A184517 *)

%o (PARI) vector(100, n, floor((sqrt(5)-1)*(n + 1/(1+sqrt(5))))) \\ _G. C. Greubel_, Nov 16 2018

%o (Magma) [Floor((Sqrt(5)-1)*(n + 1/(1+Sqrt(5)))): n in [1..100]]; // _G. C. Greubel_, Nov 16 2018

%o (Sage) [floor((sqrt(5)-1)*(n + 1/(1+sqrt(5)))) for n in (1..100)] # _G. C. Greubel_, Nov 16 2018

%Y Cf. A184117, A184517.

%K nonn

%O 1,2

%A _Clark Kimberling_, Jan 16 2011

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 16 00:16 EDT 2024. Contains 372549 sequences. (Running on oeis4.)