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

A182769
Beatty sequence for (4 + sqrt(2))/2.
5
2, 5, 8, 10, 13, 16, 18, 21, 24, 27, 29, 32, 35, 37, 40, 43, 46, 48, 51, 54, 56, 59, 62, 64, 67, 70, 73, 75, 78, 81, 83, 86, 89, 92, 94, 97, 100, 102, 105, 108, 110, 113, 116, 119, 121, 124, 127, 129, 132, 135, 138, 140, 143, 146, 148, 151, 154, 157, 159, 162, 165, 167, 170, 173, 175
OFFSET
1,1
COMMENTS
Let u=1+sqrt(2) and v=sqrt(2). Jointly rank {j*u} and {k*v} as in the first comment at A182760; a(n) is the position of n*u.
Is this a shifted version of A126281? - R. J. Mathar, Jan 24 2011
The answer to R. J. Mathar's question is no: A126281 contains 65 while this sequence does not. - L. Edson Jeffery, Sep 02 2014
LINKS
FORMULA
a(n) = floor(n*(4 + sqrt(2))/2).
MATHEMATICA
Table[Floor[n*(4 + Sqrt[2])/2], {n, 1, 100}] (* G. C. Greubel, Jan 27 2018 *)
PROG
(PARI) a(n) = floor(n*(4+sqrt(2))/2); \\ Michel Marcus, Sep 02 2014
(Magma) [Floor(n*(4 + Sqrt(2))/2): n in [1..50]]; // G. C. Greubel, Jan 27 2018
CROSSREFS
Sequence in context: A330094 A189535 A330214 * A126281 A117630 A284774
KEYWORD
nonn
AUTHOR
Clark Kimberling, Nov 30 2010
STATUS
approved