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

A279933
Positive integers k such that {(k-1)*r} < 1/2, where r = golden ratio = (1 + sqrt(5))/2 and { } = fractional part.
2
1, 3, 5, 6, 8, 11, 13, 14, 16, 19, 21, 24, 26, 27, 29, 32, 34, 35, 37, 39, 40, 42, 45, 47, 48, 50, 53, 55, 58, 60, 61, 63, 66, 68, 69, 71, 73, 74, 76, 79, 81, 82, 84, 87, 89, 90, 92, 94, 95, 97, 100, 102, 103, 105, 108, 110, 113, 115, 116, 118
OFFSET
1,2
LINKS
FORMULA
a(n) = 1 + A005653(n-1) for n > 1.
MATHEMATICA
r = GoldenRatio;
t = Table[If[FractionalPart[n r - r] < 1/2, 0, 1 ], {n, 1, 120}] (* {A078588(n-1)} *)
Flatten[Position[t, 0]] (* A279933 *)
Flatten[Position[t, 1]] (* A279934 *)
CROSSREFS
Cf. A005653, A279934 (complement).
Sequence in context: A309544 A154111 A047444 * A327206 A212439 A160734
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Dec 23 2016
EXTENSIONS
New name from Jianing Song, Sep 12 2019
STATUS
approved