OFFSET
1,2
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..2000
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*A002581). - R. J. Mathar, Apr 12 2019
MATHEMATICA
Floor[Range[100]*CubeRoot[3]] (* Paolo Xausa, Jul 05 2024 *)
PROG
(PARI) { default(realprecision, 100); b=3^(1/3); for (n = 1, 2000, write("b059539.txt", n, " ", floor(n*b)); ) } \\ Harry J. Smith, Jun 27 2009
(Python)
from sympy import integer_nthroot
def A059539(n): return integer_nthroot(3*n**3, 3)[0] # Chai Wah Wu, Mar 16 2021
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mitch Harris, Jan 22 2001
STATUS
approved