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

A247964
Beatty sequence for e^(1/3): a(n) = floor(n*(e^(1/3))).
2
0, 1, 2, 4, 5, 6, 8, 9, 11, 12, 13, 15, 16, 18, 19, 20, 22, 23, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 39, 40, 41, 43, 44, 46, 47, 48, 50, 51, 53, 54, 55, 57, 58, 60, 61, 62, 64, 65, 66, 68, 69, 71, 72, 73, 75, 76, 78, 79, 80, 82, 83, 85, 86, 87, 89, 90, 92, 93
OFFSET
0,3
COMMENTS
The Beatty complement is given in A248522. - M. F. Hasler, Oct 07 2014
MATHEMATICA
Floor[Range[0, 100]*Exp[1/3]] (* Paolo Xausa, Jul 16 2024 *)
PROG
(Java) static int a(int n) {return (int) (n*Math.pow(Math.E, (1.0/3))); }
(PARI) a(n)=n\exp(-1/3) \\ M. F. Hasler, Oct 07 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Sarah Nathanson, Oct 01 2014
STATUS
approved