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”).

A184531
Upper s-Wythoff sequence, where s=5n-4. Complement of A184530.
2
2, 9, 15, 21, 27, 33, 39, 46, 52, 58, 64, 70, 77, 83, 89, 95, 101, 108, 114, 120, 126, 132, 139, 145, 151, 157, 163, 170, 176, 182, 188, 194, 201, 207, 213, 219, 225, 231, 238, 244, 250, 256, 262, 269, 275, 281, 287, 293, 300, 306, 312, 318, 324, 331, 337
OFFSET
1,1
COMMENTS
See A184117 for the definition of lower and upper s-Wythoff sequences.
MATHEMATICA
k = 5; r = 4; d = Sqrt[4 + k^2];
a[n_] := Floor[(1/2) (d + 2 - k) (n + r/(d + 2))];
b[n_] := Floor[(1/2) (d + 2 + k) (n - r/(d + 2))];
Table[a[n], {n, 120}]
Table[b[n], {n, 120}]
CROSSREFS
Sequence in context: A272044 A354972 A304803 * A063105 A215035 A324522
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 16 2011
STATUS
approved