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

A352674
Beatty sequence for (3/2)(1+sqrt(3)).
3
4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 45, 49, 53, 57, 61, 65, 69, 73, 77, 81, 86, 90, 94, 98, 102, 106, 110, 114, 118, 122, 127, 131, 135, 139, 143, 147, 151, 155, 159, 163, 168, 172, 176, 180, 184, 188, 192, 196, 200, 204, 209, 213, 217, 221, 225, 229, 233
OFFSET
1,1
FORMULA
a(n) = floor((3/2)*(1+sqrt(3))*n).
MATHEMATICA
z = 200; r = (3/2) (1 + Sqrt[3]); s = r/(r - 1);
Table[Floor[n r], {n, 1, z}] (* A352674 *)
Table[Floor[n s], {n, 1, z}] (* A352675 *)
CROSSREFS
Cf. A352672, A352675 (complement), A352676.
Sequence in context: A189917 A172326 A329975 * A311125 A311126 A311127
KEYWORD
nonn
AUTHOR
Clark Kimberling, Mar 26 2022
STATUS
approved