OFFSET
1,2
COMMENTS
Beatty sequence for sqrt(2)^sqrt(2) = 1.63252...; complement of A109260.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Beatty Sequence
MATHEMATICA
With[{c=(Sqrt[2])^Sqrt[2]}, Floor[c*Range[100]]] (* Harvey P. Dale, Mar 19 2018 *)
PROG
(PARI) for(n=1, 100, print1(floor(n*sqrt(2)^sqrt(2)), ", ")) \\ G. C. Greubel, Mar 27 2018
(Magma) [Floor(n*Sqrt(2)^Sqrt(2)): n in [1..100]]; // G. C. Greubel, Mar 27 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 23 2005
STATUS
approved