login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A206906 n+[ns/r]+[nt/r], where []=floor, r=1/3, s=sqrt(3), t=1/s. 4
7, 15, 23, 30, 38, 47, 55, 62, 70, 78, 87, 94, 102, 110, 117, 126, 134, 142, 149, 157, 166, 174, 181, 189, 197, 206, 213, 221, 229, 236, 245, 253, 261, 268, 276, 285, 293, 300, 308, 316, 325, 332, 340, 348, 355, 364, 372, 380, 387, 395, 404, 412, 419 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequences A206906, A206907, A206908 partition the positive integers. To generate them, jointly rank the sets {3n}, {n/sqrt(3)}, {n*sqrt(3)} for n>=1. The positions of 3n in the joint ranking form A206906, and likewise for the other sequences.
LINKS
MATHEMATICA
r = 1/3; s = Sqrt[3]; t = 1/s;
a[n_] := n + Floor[n*s/r] + Floor[n*t/r];
b[n_] := n + Floor[n*r/s] + Floor[n*t/s];
c[n_] := n + Floor[n*r/t] + Floor[n*s/t];
Table[a[n], {n, 1, 70}] (* A206906 *)
Table[b[n], {n, 1, 80}] (* A206907 *)
Table[c[n], {n, 1, 70}] (* A206908 *)
CROSSREFS
Cf. A206903.
Sequence in context: A335512 A369375 A004215 * A295669 A179890 A292639
KEYWORD
nonn
AUTHOR
Clark Kimberling, Feb 13 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 14:18 EDT 2024. Contains 371960 sequences. (Running on oeis4.)