A109260 a(n) = floor(n*sqrt(2)^sqrt(2)/(sqrt(2)^sqrt(2)-1)).
2, 5, 7, 10, 12, 15, 18, 20, 23, 25, 28, 30, 33, 36, 38, 41, 43, 46, 49, 51, 54, 56, 59, 61, 64, 67, 69, 72, 74, 77, 80, 82, 85, 87, 90, 92, 95, 98, 100, 103, 105, 108, 110, 113, 116, 118, 121, 123, 126, 129, 131, 134, 136, 139, 141, 144, 147, 149
Offset: 1
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Beatty Sequence
- Index entries for sequences related to Beatty sequences
Crossrefs
Cf. A109261.
Programs
-
Magma
[Floor(n*Sqrt(2)^Sqrt(2)/(Sqrt(2)^Sqrt(2) - 1)): n in [1..100]]; // G. C. Greubel, Aug 17 2018
-
Mathematica
Table[Floor[n*Sqrt[2]^Sqrt[2]/(Sqrt[2]^Sqrt[2] - 1)], {n, 1, 100}] (* G. C. Greubel, Aug 17 2018 *)
-
PARI
for(n=1,100, print1(floor(n*sqrt(2)^sqrt(2)/(sqrt(2)^sqrt(2)-1)), ", ")) \\ G. C. Greubel, Aug 17 2018
Comments