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!)
A330173 a(n) = n + floor(ns/r) + floor(nt/r), where r = sqrt(2), s = sqrt(2) + 1, t = sqrt(2) + 2. 1
4, 9, 15, 19, 25, 30, 34, 40, 45, 51, 55, 60, 66, 70, 76, 81, 87, 91, 96, 102, 106, 112, 117, 121, 127, 132, 138, 142, 148, 153, 157, 163, 168, 174, 178, 183, 189, 193, 199, 204, 208, 214, 219, 225, 229, 235, 240, 244, 250, 255, 261, 265, 270, 276, 280, 286 (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 = sqrt(2), s = sqrt(2) + 1, t = sqrt(2) + 2 yields
LINKS
FORMULA
a(n) = n + floor(ns/r) + floor(nt/r), where r = sqrt(2), s = sqrt(2) + 1, t = sqrt(2) + 2.
MATHEMATICA
r = Sqrt[2]; s = Sqrt[2] + 1; t = Sqrt[2] + 2;
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}] (* A330173 *)
Table[b[n], {n, 1, 120}] (* A016789 *)
Table[c[n], {n, 1, 120}] (* A091087 *)
Table[n+Floor[(n(Sqrt[2]+1))/Sqrt[2]]+Floor[(n(Sqrt[2]+2))/Sqrt[2]], {n, 60}] (* Harvey P. Dale, Apr 16 2023 *)
CROSSREFS
Sequence in context: A313213 A313214 A313215 * A313216 A189388 A184916
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 04 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 April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)