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!)
A059880 Positions of negative terms in A059876. 2

%I #5 Mar 07 2016 03:07:04

%S 8,32,33,34,35,36,64,65,128,129,130,131,132,133,134,135,136,137,138,

%T 139,140,141,142,143,144,145,146,147,148,149,150,152,160,161,256,257,

%U 258,259,260,261,262,263,264,265,266,267,268,269,270,272,273,274,275

%N Positions of negative terms in A059876.

%p negative_terms(A059876); negative_terms := proc(b) local a,i; a := []; for i from 1 to nops(b) do if(b[i] < 0) then a := [op(a),i]; fi; od; RETURN(a); end;

%t a[n_] := With[{s = Floor[Log[2, n]]}, (-1)^(n+1) + Sum[(-1)^(Floor[n/2^i] + 1)*Prime[i], {i, 1, s}] + If[1 == n, 1, Mod[s + 1, 2]*Prime[s]]];

%t A059880 = Position[Array[a, 500], _?Negative] // Flatten (* _Jean-François Alcover_, Mar 07 2016 *)

%K nonn

%O 1,1

%A _Antti Karttunen_, Feb 05 2001

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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)