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!)
A190236 a(n) = [n*u + n*v] -[n*u] -[n*v], where u=1/2, v=(1+sqrt(5))/2, and []=floor. 3
1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1
LINKS
MATHEMATICA
u = 1/2; v = GoldenRatio;
f[n_] := Floor[n*u + n*v] - Floor[n*u] - Floor[n*v]
t = Table[f[n], {n, 1, 120}] (* A190236 *)
Flatten[Position[t, 0]] (* A190237 *)
Flatten[Position[t, 1]] (* A190238 *)
Table[Floor[n*(2 + Sqrt[5])/2] - Floor[n/2] - Floor[n*(1 + Sqrt[5])/2], {n, 1, 50}] (* G. C. Greubel, Dec 27 2017 *)
PROG
(PARI) for(n=1, 30, print1(floor(n*(2 + sqrt(5))/2) - floor(n/2) - floor(n*(1 + sqrt(5))/2), ", ")) \\ G. C. Greubel, Dec 27 2017
(Magma) [Floor(n*(1+Sqrt(5))/2) - Floor(n/2) - Floor(n*(1+Sqrt(5))/2): n in [1..30]]; // G. C. Greubel, Dec 27 2017
CROSSREFS
Sequence in context: A225569 A087032 A236677 * A190224 A352678 A373371
KEYWORD
nonn
AUTHOR
Clark Kimberling, May 06 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 June 12 16:17 EDT 2024. Contains 373334 sequences. (Running on oeis4.)