This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A263252 #10 Dec 22 2024 09:07:46 %S A263252 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, %T A263252 19,19,19,19,20,21,22,23,26,27,28,28,29,29,30,31,32,32,33,33,35,35,35, %U A263252 36,36,36,37,37,38,38,38,38,40,40,40,40,40,40,43,44,45,46,46,46,47 %N A263252 Partial sums of A263250. %H A263252 Antti Karttunen, <a href="/A263252/b263252.txt">Table of n, a(n) for n = 0..10000</a> %F A263252 a(0) = A263250(n); for n >= 1, a(n) = A263250(n) + a(n-1). %o A263252 (PARI) \\ See program at A263250. %o A263252 (Scheme) %o A263252 ;; With memoization-macro definec. %o A263252 (definec (A263252 n) (if (zero? n) (A263250 n) (+ (A263250 n) (A263252 (- n 1))))) %Y A263252 Cf. A263250, A263253. %Y A263252 Cf. also A263086. %K A263252 nonn %O A263252 0,1 %A A263252 _Antti Karttunen_, Nov 07 2015