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