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

A184529
Upper s-Wythoff sequence, where s=5n-3. Complement of A184528.
1
3, 9, 16, 22, 28, 34, 40, 47, 53, 59, 65, 71, 77, 84, 90, 96, 102, 108, 115, 121, 127, 133, 139, 146, 152, 158, 164, 170, 177, 183, 189, 195, 201, 208, 214, 220, 226, 232, 238, 245, 251, 257, 263, 269, 276, 282, 288, 294, 300, 307, 313, 319, 325, 331, 338
OFFSET
1,1
COMMENTS
See A184117 for the definition of lower and upper s-Wythoff sequences.
MATHEMATICA
k = 5; r = 3; 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: A271491 A359618 A214644 * A338020 A020967 A253547
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 16 2011
STATUS
approved