login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Partial sums of A278513.
2

%I #5 Nov 29 2016 22:39:30

%S 0,-1,0,0,-1,0,0,0,1,1,1,0,0,1,2,2,1,1,1,2,1,1,0,0,0,-1,-2,-2,-2,-3,

%T -3,-4,-3,-3,-3,-2,-2,-2,-3,-4,-4,-4,-3,-3,-3,-2,-2,-2,-3,-2,-2,-3,-2,

%U -2,-2,-3,-3,-2,-1,-1,-1,-2,-2,-2,-3,-3,-4,-3,-4,-4,-4,-5,-5,-5,-4,-4,-3,-2,-2,-1,0,0,-1,-2,-3,-3,-3,-3,-3,-3,-4,-5,-5,-4,-4,-4,-3

%N Partial sums of A278513.

%H Antti Karttunen, <a href="/A278514/b278514.txt">Table of n, a(n) for n = 0..10028</a>

%F a(0) = 0; for n > 0, a(n) = A278513(n) + a(n-1).

%o (Scheme) (definec (A278514 n) (if (zero? n) n (+ (A278513 n) (A278514 (- n 1)))))

%Y Cf. A002321, A008683, A276573, A278513.

%K sign

%O 0,15

%A _Antti Karttunen_, Nov 28 2016