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!)
A189525 a(n) = n + [n*r/s] + [n*t/s]; r=2, s=1+sqrt(2), t=1+sqrt(3). 3
2, 5, 8, 11, 14, 16, 19, 23, 26, 29, 32, 34, 37, 40, 43, 47, 50, 52, 55, 58, 61, 64, 68, 70, 73, 76, 79, 82, 85, 87, 91, 94, 97, 100, 102, 105, 108, 112, 115, 118, 120, 123, 126, 129, 132, 136, 138, 141, 144, 147, 150, 153, 155, 159, 162, 165, 168, 171, 173, 176, 180, 183, 186, 189, 191, 194, 197, 200, 204, 206, 209, 212, 215, 218, 221, 224, 227, 230, 233, 236, 239, 241, 244 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A189524.
LINKS
MATHEMATICA
r=2; s=1+2^(1/2); t=1+3^(1/2);
f[n_] := n + Floor[n*s/r] + Floor[n*t/r];
g[n_] := n + Floor[n*r/s] + Floor[n*t/s];
h[n_] := n + Floor[n*r/t] + Floor[n*s/t];
Table[f[n], {n, 1, 120}] (* A189524 *)
Table[g[n], {n, 1, 120}] (* A189525 *)
Table[h[n], {n, 1, 120}] (* A189526 *)
PROG
(PARI) for(n=1, 100, print1(n + floor(2*n/(sqrt(2)+1)) + floor(n*(1+sqrt(3))/(1+sqrt(2))), ", ")) \\ G. C. Greubel, Apr 20 2018
(Magma) [n + Floor(2*n/(Sqrt(2)+1)) + Floor(n*(1+Sqrt(3))/(1+Sqrt(2))): n in [1..100]]; // G. C. Greubel, Apr 20 2018
CROSSREFS
Sequence in context: A059560 A022842 A356057 * A189369 A055048 A045930
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 23 2011
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 12 17:17 EDT 2024. Contains 372492 sequences. (Running on oeis4.)