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”).

A263252
Partial sums of A263250.
5
2, 3, 4, 4, 4, 4, 6, 6, 6, 6, 6, 6, 8, 8, 8, 9, 10, 10, 12, 13, 14, 15, 16, 16, 18, 18, 19, 19, 19, 19, 19, 19, 20, 21, 22, 23, 26, 27, 28, 28, 29, 29, 30, 31, 32, 32, 33, 33, 35, 35, 35, 36, 36, 36, 37, 37, 38, 38, 38, 38, 40, 40, 40, 40, 40, 40, 43, 44, 45, 46, 46, 46, 47
OFFSET
0,1
LINKS
FORMULA
a(0) = A263250(n); for n >= 1, a(n) = A263250(n) + a(n-1).
PROG
(PARI) \\ See program at A263250.
(Scheme)
;; With memoization-macro definec.
(definec (A263252 n) (if (zero? n) (A263250 n) (+ (A263250 n) (A263252 (- n 1)))))
CROSSREFS
Cf. also A263086.
Sequence in context: A372450 A087827 A136528 * A276334 A225486 A325282
KEYWORD
nonn,changed
AUTHOR
Antti Karttunen, Nov 07 2015
STATUS
approved