login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A262895
Partial sums of A262894.
4
6, 6, 47, 47, 47, 52, 52, 68, 68, 70, 70, 69, 70, 92, 96, 96, 96, 93, 93, 92, 79, 79, 184, 186, 185, 184, 182, 183, 201, 208, 208, 208, 208, 209, 208, 205, 205, 205, 200, 200, 196, 209, 209, 202, 202, 202, 195, 201, 202, 202, 202, 202, 243, 243, 243, 243, 333, 332, 332, 337, 337, 335, 335, 336, 335, 335, 347, 346, 346, 349, 410, 410, 410, 410, 410, 410, 410, 410, 527
OFFSET
0,1
COMMENTS
First negative term occurs as a(2778) = -206.
LINKS
FORMULA
a(0) = A262894(0); for n >= 1, a(n) = a(n-1) + A262894(n).
PROG
(Scheme, with memoization-macro definec)
(definec (A262895 n) (if (zero? n) (A262894 0) (+ (A262895 (- n 1)) (A262894 n))))
CROSSREFS
Cf. also A255332.
Sequence in context: A014435 A175550 A219352 * A262893 A084675 A075179
KEYWORD
sign,look
AUTHOR
Antti Karttunen, Oct 04 2015
STATUS
approved