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!)
A190227 a(n) = [n*u + n*v] - [n*u] - [n*v], where u=sin(Pi/5), v=cos(Pi/5), and []=floor. 4

%I #11 Sep 08 2022 08:45:57

%S 1,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,1,1,0,0,1,1,1,0,0,0,1,1,0,0,0,1,1,1,

%T 0,0,1,1,1,0,0,1,1,1,0,0,0,1,1,0,1,0,1,1,0,1,0,1,1,0,1,0,0,1,0,1,0,0,

%U 1,0,1,0,0,1,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,1,1,0,0,0,1,1,0,0,0,1,1,1,0,0,1,1,1,0,0,1,1,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,1,0,1,0,1

%N a(n) = [n*u + n*v] - [n*u] - [n*v], where u=sin(Pi/5), v=cos(Pi/5), and []=floor.

%H G. C. Greubel, <a href="/A190227/b190227.txt">Table of n, a(n) for n = 1..10000</a>

%t u = Sin[Pi/5]; v = Cos[Pi/5];

%t f[n_] := Floor[n*u + n*v] - Floor[n*u] - Floor[n*v]

%t t = Table[f[n], {n, 1, 120}] (* A190227 *)

%t Flatten[Position[t, 0]] (* A190228 *)

%t Flatten[Position[t, 1]] (* A190229 *)

%o (PARI) for(n=1,30, print1(floor(n*(sin(Pi/5) + cos(Pi/5))) - floor(n*cos(Pi/5)) - floor(n*sin(Pi/5)), ", ")) \\ _G. C. Greubel_, Dec 27 2017

%o (Magma) C<i> := ComplexField(); [Floor(n*(Sin(Pi(C)/5) + Cos(Pi(C)/5))) - Floor(n*Sin(Pi(C)/5)) - Floor(n*Cos(Pi(C)/5)): n in [1..30]]; // _G. C. Greubel_, Dec 27 2017

%Y Cf. A190228, A190229.

%K nonn

%O 1

%A _Clark Kimberling_, May 06 2011

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 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)