The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A206908 a(n) = 4*n + floor(n/sqrt(3)). 3
4, 9, 13, 18, 22, 27, 32, 36, 41, 45, 50, 54, 59, 64, 68, 73, 77, 82, 86, 91, 96, 100, 105, 109, 114, 119, 123, 128, 132, 137, 141, 146, 151, 155, 160, 164, 169, 173, 178, 183, 187, 192, 196, 201, 205, 210, 215, 219, 224, 228, 233, 238, 242, 247, 251 (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.
Original name:
n+[nr/t]+[ns/t], where []=floor, r=1/3, s=sqrt(3), t=1/s.
LINKS
MAPLE
seq(4*n+floor(n/sqrt(3)), n=1..100); # Robert Israel, Oct 18 2020
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: A312932 A330183 A312933 * A330179 A312934 A312935
KEYWORD
nonn
AUTHOR
Clark Kimberling, Feb 13 2012
EXTENSIONS
Name changed by Robert Israel, Oct 18 2020
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 June 5 01:34 EDT 2024. Contains 373102 sequences. (Running on oeis4.)