[go: up one dir, main page]

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

A059544
Beatty sequence for log(3)/(log(3)-1).
2
11, 22, 33, 44, 55, 66, 77, 89, 100, 111, 122, 133, 144, 155, 167, 178, 189, 200, 211, 222, 233, 245, 256, 267, 278, 289, 300, 311, 323, 334, 345, 356, 367, 378, 389, 401, 412, 423, 434, 445, 456, 467, 479, 490, 501, 512, 523, 534, 545, 557, 568, 579, 590
OFFSET
1,1
LINKS
Aviezri S. Fraenkel, Jonathan Levitt, Michael Shimshoni, Characterization of the set of values f(n)=[n alpha], n=1,2,..., Discrete Math. 2 (1972), no.4, 335-345.
Eric Weisstein's World of Mathematics, Beatty Sequence.
FORMULA
a(n) = floor(n*log(3)/(log(3)-1)). - Michel Marcus, Jan 05 2015
MATHEMATICA
With[{c=Log[3]/(Log[3]-1)}, Floor[c #]&/@Range[60]] (* Harvey P. Dale, Feb 10 2019 *)
PROG
(PARI) { default(realprecision, 100); b=log(3)/(log(3) - 1); for (n = 1, 2000, write("b059544.txt", n, " ", floor(n*b)); ) } \\ Harry J. Smith, Jun 28 2009
CROSSREFS
Beatty complement is A059543.
Sequence in context: A338754 A033008 A082275 * A070022 A004940 A367339
KEYWORD
nonn,easy
AUTHOR
Mitch Harris, Jan 22 2001
STATUS
approved