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

A038127
A Beatty sequence: a(n) = floor(n*2^sqrt(2)).
4
0, 2, 5, 7, 10, 13, 15, 18, 21, 23, 26, 29, 31, 34, 37, 39, 42, 45, 47, 50, 53, 55, 58, 61, 63, 66, 69, 71, 74, 77, 79, 82, 85, 87, 90, 93, 95, 98, 101, 103, 106, 109, 111, 114, 117, 119, 122, 125, 127, 130, 133, 135, 138, 141, 143, 146, 149, 151
OFFSET
0,2
COMMENTS
2^sqrt(2) is the Hilbert number (a.k.a. Gelfond-Schneider constant) (A007507).
Of course this is different from A047480.
MATHEMATICA
Floor[2^Sqrt[2] Range[0, 60]] (* Harvey P. Dale, Dec 03 2012 *)
PROG
(PARI) for(n=1, 50, print1(floor(n*2^(sqrt(2))), ", ")) \\ G. C. Greubel, Mar 27 2018
(Magma) [Floor(n*2^(Sqrt(2))): n in [1..50]]; // G. C. Greubel, Mar 27 2018
CROSSREFS
Sequence in context: A090909 A330064 A022841 * A047480 A376284 A285207
KEYWORD
nonn
AUTHOR
STATUS
approved