cp's OEIS Frontend

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.

A133610 Partial sums of pyramidal sequence A053616.

This page as a plain text file.
%I A133610 #8 Jan 29 2016 11:13:52
%S A133610 0,0,1,1,2,3,3,4,6,7,7,8,10,12,13,13,14,16,19,21,22,22,23,25,28,31,33,
%T A133610 34,34,35,37,40,44,47,49,50,50,51,53,56,60,64,67,69,70,70,71,73,76,80,
%U A133610 85,89,92,94,95,95,96,98,101,105,110,115,119,122,124,125,125,126,128,131,135
%N A133610 Partial sums of pyramidal sequence A053616.
%H A133610 Reinhard Zumkeller, <a href="/A133610/b133610.txt">Table of n, a(n) for n = 0..10000</a>
%F A133610 a(n) = SUM[i=0..n] distance from i to nearest triangular number = SUM[i=0..n]MIN{|i - (k*(k+1)/2)|} = SUM[i=0..n] MIN{|A000217(i) - i|}.
%o A133610 (Haskell)
%o A133610 a133610 n = a133610_list !! n
%o A133610 a133610_list = scanl1 (+) a053616_list
%o A133610 -- _Reinhard Zumkeller_, Jan 24 2014
%Y A133610 Cf. A000217, A002262, A053188, A053616.
%K A133610 easy,nonn
%O A133610 0,5
%A A133610 _Jonathan Vos Post_, Dec 28 2007
%E A133610 Data corrected by _Reinhard Zumkeller_, Jan 24 2014