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

A329846
Beatty sequence for (7+sqrt(29))/5.
3
2, 4, 7, 9, 12, 14, 17, 19, 22, 24, 27, 29, 32, 34, 37, 39, 42, 44, 47, 49, 52, 54, 56, 59, 61, 64, 66, 69, 71, 74, 76, 79, 81, 84, 86, 89, 91, 94, 96, 99, 101, 104, 106, 108, 111, 113, 116, 118, 121, 123, 126, 128, 131, 133, 136, 138, 141, 143, 146, 148
OFFSET
1,1
COMMENTS
Let r = (3+sqrt(29))/5. Then (floor(n*r)) and (floor(n*r + 4r/5)) are a pair of Beatty sequences; i.e., every positive integer is in exactly one of the sequences. See the Guide to related sequences at A329825.
FORMULA
a(n) = floor(n*s), where s = (7+sqrt(29))/5.
MATHEMATICA
t = 4/5; r = Simplify[(2 - t + Sqrt[t^2 + 4])/2]; s = Simplify[r/(r - 1)];
Table[Floor[r*n], {n, 1, 200}] (* A329845 *)
Table[Floor[s*n], {n, 1, 200}] (* A329846 *)
CROSSREFS
Cf. A329825, A329845 (complement).
Sequence in context: A022840 A329994 A064995 * A067839 A329991 A047211
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 02 2020
STATUS
approved