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!)
A188321 a(n) = [n*r] - [k*r] - [n*r-k*r], where r=1/sqrt(2), k=5, [ ]=floor. 4
0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1
COMMENTS
See A188014.
LINKS
FORMULA
a(n) = [n*r]-[5*r]-[n*r-5*r], where r=1/sqrt(2).
MATHEMATICA
r=2^(-1/2); k=5;
t=Table[Floor[n*r]-Floor[(n-k)*r]-Floor[k*r], {n, 1, 220}] (*A188321*)
Flatten[Position[t, 0]] (*A188322*)
Flatten[Position[t, 1]] (*A188323*)
PROG
(PARI) for(n=1, 100, print1(floor(n/sqrt(2)) - floor(5/sqrt(2)) - floor((n-5)/sqrt(2)), ", )) \\ G. C. Greubel, Apr 11 2018
(Magma) [Floor(n/Sqrt(2)) - Floor(5/Sqrt(2)) - Floor((n-5)/Sqrt(2)): n in [1..100]]; // G. C. Greubel, Apr 11 2018
CROSSREFS
Sequence in context: A189476 A288752 A189706 * A257628 A203568 A327974
KEYWORD
nonn
AUTHOR
Clark Kimberling, Mar 28 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 19 11:31 EDT 2024. Contains 371792 sequences. (Running on oeis4.)