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 A175360 #11 Jun 23 2024 22:00:14 %S A175360 1,11,51,131,221,333,573,893,1093,1343,1903,2463,2863,3423,4223,5183, %T A175360 5913,6393,7633,9153,9905,11025,12865,14465,15665,16875,18875,21115, %U A175360 22715,24395,27115,30315,31795,33235,36915,39955,42205,45005,48285 %N A175360 Partial sums of A000132. %C A175360 The 5th row of A122510. %H A175360 Chai Wah Wu, <a href="/A175360/b175360.txt">Table of n, a(n) for n = 0..10000</a> %F A175360 a(n^2) = A055411(n). %F A175360 G.f.: theta_3(x)^5 / (1 - x). - _Ilya Gutkovskiy_, Feb 13 2021 %o A175360 (Python) %o A175360 # uses Python code for A046895 %o A175360 from math import isqrt %o A175360 def A175360(n): return A046895(n)+(sum(A046895(n-k**2) for k in range(1,isqrt(n)+1))<<1) # _Chai Wah Wu_, Jun 23 2024 %Y A175360 Cf. A000132, A055411, A122510. %K A175360 nonn %O A175360 0,2 %A A175360 _R. J. Mathar_, Apr 24 2010