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!)
A330177 a(n) = n + floor(ns/r) + floor(nt/r), where r = e - 2, s = e - 1, t = e. 2
6, 13, 21, 28, 34, 42, 49, 57, 64, 70, 78, 85, 93, 99, 106, 114, 121, 129, 135, 142, 150, 157, 165, 171, 178, 186, 193, 199, 207, 214, 222, 229, 235, 243, 250, 258, 265, 271, 279, 286, 294, 300, 307, 315, 322, 330, 336, 343, 351, 358, 366, 372, 379, 387, 394 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This is one of three sequences that partition the positive integers. In general, suppose that r, s, t are positive real numbers for which the sets {i/r: i>=1}, {j/s: j>=1}, {k/t: k>=1} are disjoint. Let a(n) be the rank of n/r when all the numbers in the three sets are jointly ranked. Define b(n) and c(n) as the ranks of n/s and n/t. It is easy to prove that
a(n)=n+[ns/r]+[nt/r],
b(n)=n+[nr/s]+[nt/s],
c(n)=n+[nr/t]+[ns/t], where []=floor.
Taking r = e - 2, s = e - 1, t = e yields
LINKS
FORMULA
a(n) = n + floor(ns/r) + floor(nt/r), where r = e - 2, s = e - 1, t = e.
MATHEMATICA
r = E - 2; s = E - 1; t = E;
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, 120}] (* A330177 *)
Table[b[n], {n, 1, 120}] (* A016789 *)
Table[c[n], {n, 1, 120}] (* A330178 *)
CROSSREFS
Sequence in context: A172330 A017053 A046040 * A227359 A056115 A173358
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 05 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 May 7 12:11 EDT 2024. Contains 372303 sequences. (Running on oeis4.)