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!)
A189371 a(n) = n + [n*r/s] + [n*t/s]; r=1, s=sqrt(2), t=sqrt(5). 3
2, 6, 9, 12, 15, 19, 22, 25, 29, 32, 35, 38, 42, 45, 48, 52, 55, 58, 62, 65, 68, 71, 75, 77, 81, 85, 88, 91, 94, 98, 101, 104, 108, 111, 114, 117, 121, 124, 127, 131, 133, 137, 140, 144, 147, 150, 154, 156, 160, 164, 167, 170, 173, 177, 179, 183, 187, 190, 193, 196, 200, 203, 206, 210, 212, 216, 219, 223, 226, 229, 233, 235, 239, 243, 246, 249, 252, 256, 258, 262, 266, 268, 272 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A189370.
LINKS
MATHEMATICA
r = 1; s = Sqrt[2]; t = Sqrt[5];
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}] (* A189370 *)
Table[g[n], {n, 1, 120}] (* A189371 *)
Table[h[n], {n, 1, 120}] (* A189372 *)
PROG
(PARI) for(n=1, 100, print1(n + floor(n/sqrt(2)) + floor(n*sqrt(5)/sqrt(2)), ", ")) \\ G. C. Greubel, Apr 20 2018
(Magma) [n + Floor(n/Sqrt(2)) + Floor(n*Sqrt(5)/Sqrt(2)): n in [1..100]]; // G. C. Greubel, Apr 20 2018
CROSSREFS
Sequence in context: A350235 A189752 A206813 * A190059 A190332 A187912
KEYWORD
nonn
AUTHOR
Clark Kimberling, Apr 20 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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)