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!)
A190245 a(n) = [nu+nv]-[nu]-[nv], where u=sqrt(2), v=2u, and []=floor. 3
1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1
LINKS
MATHEMATICA
u = 2^(1/2); v = 2u;
f[n_] := Floor[n*u + n*v] - Floor[n*u] - Floor[n*v]
t = Table[f[n], {n, 1, 120}] (*A190245*)
Flatten[Position[t, 0]] (*A190246*)
Flatten[Position[t, 1]] (*A190247*)
PROG
(PARI) for(n=1, 30, print1(floor(3*n*sqrt(2)) - floor(n*sqrt(2)) - floor(2*n*sqrt(2)), ", ")) \\ G. C. Greubel, Dec 26 2017
(Magma) [Floor(3*n*Sqrt(2)) - Floor(n*Sqrt(2)) - Floor(2*n*Sqrt(2)): n in [1..30]]; // G. C. Greubel, Dec 26 2017
CROSSREFS
Sequence in context: A016330 A085002 A170966 * A328100 A332479 A362460
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 April 19 03:46 EDT 2024. Contains 371782 sequences. (Running on oeis4.)