[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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”).

A059554
Beatty sequence for Gamma(2/3)/(Gamma(2/3)-1).
2
3, 7, 11, 15, 19, 22, 26, 30, 34, 38, 42, 45, 49, 53, 57, 61, 65, 68, 72, 76, 80, 84, 87, 91, 95, 99, 103, 107, 110, 114, 118, 122, 126, 130, 133, 137, 141, 145, 149, 152, 156, 160, 164, 168, 172, 175, 179, 183, 187, 191, 195, 198, 202, 206, 210, 214, 217, 221
OFFSET
1,1
LINKS
Aviezri S. Fraenkel, Jonathan Levitt and 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*gamma(2/3)/(gamma(2/3)-1)). - Michel Marcus, Jan 05 2015
MATHEMATICA
Floor[Range[100]*(1 + 1/(Gamma[2/3] - 1))] (* Paolo Xausa, Jul 05 2024 *)
PROG
(PARI) { default(realprecision, 100); b=gamma(2/3)/(gamma(2/3) - 1); for (n = 1, 2000, write("b059554.txt", n, " ", floor(n*b)); ) } \\ Harry J. Smith, Jun 28 2009
CROSSREFS
Beatty complement is A059553.
Cf. A073006.
Sequence in context: A322408 A124981 A249244 * A329840 A329977 A246171
KEYWORD
nonn,easy
AUTHOR
Mitch Harris, Jan 22 2001
STATUS
approved