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 A073336 #22 Aug 18 2019 07:30:53 %S A073336 0,1,2,4,8,13,21,33,51,76,111,159,226,315,435,593,805,1077,1435,1893, %T A073336 2486,3237,4198,5405,6935,8843,11235,14201,17893,22437,28052,34929, %U A073336 43371,53653,66201,81410,99876,122155,149063,181399,220280,266811,322524,388960 %N A073336 Total number of square parts in all partitions of n. %H A073336 Vaclav Kotesovec, <a href="/A073336/b073336.txt">Table of n, a(n) for n = 0..10000</a> (terms 0..1000 from Alois P. Heinz) %F A073336 a(n) = Sum_{k=1..n} A046951(k)*A000041(n-k). %F A073336 G.f.: Sum_{i>=1} x^(i^2)/(1 - x^(i^2)) / Product_{j>=1} (1 - x^j). - _Ilya Gutkovskiy_, Jan 24 2017 %p A073336 b:= proc(n, i) option remember; `if`(n=0, [1, 0], %p A073336 `if`(i<1, [0, 0], add((l->l+[0, `if`(j>0 and issqr(i), %p A073336 l[1]*j, 0)])(b(n-i*j, i-1)), j=0..iquo(n, i)))) %p A073336 end: %p A073336 a:= n-> b(n, n)[2] : %p A073336 seq(a(n), n=0..60); # _Alois P. Heinz_, Feb 19 2013 %t A073336 b[n_, i_] := b[n, i] = If[n == 0, {1, 0}, If[i<1, {0, 0}, Sum[Function[{l}, l+{0, If[j>0 && IntegerQ[Sqrt[i]], l[[1]]*j, 0]}][b[n-i*j, i-1]], {j, 0, Quotient[n, i]}]]]; a[n_] := b[n, n][[2]]; Table[a[n], {n, 0, 60}] (* _Jean-François Alcover_, May 13 2015, after _Alois P. Heinz_ *) %Y A073336 Cf. A000041, A046951, A309535. %K A073336 easy,nonn %O A073336 0,3 %A A073336 _Vladeta Jovovic_, Aug 22 2002 %E A073336 More terms from _Emeric Deutsch_, Nov 18 2004 %E A073336 a(0) inserted by _Alois P. Heinz_, Feb 19 2013