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 A222731 #10 May 29 2018 09:20:24 %S A222731 1,0,1,3,4,4,11,13,21,30,44,59,92,115,165,225,305,394,546,700,931, %T A222731 1204,1572,2005,2613,3290,4218,5328,6745,8423,10630,13193,16475,20386, %U A222731 25269,31072,38346,46882,57478,70066,85415,103582,125794,151916,183576,220962 %N A222731 Total sum of parts of multiplicity 3 in all partitions of n. %H A222731 Alois P. Heinz, <a href="/A222731/b222731.txt">Table of n, a(n) for n = 3..1000</a> %F A222731 G.f.: (x^3/(1-x^3)^2-x^4/(1-x^4)^2)/Product_{i>=1}(1-x^i). %F A222731 a(n) ~ 7 * sqrt(3) * exp(Pi*sqrt(2*n/3)) / (288 * Pi^2). - _Vaclav Kotesovec_, May 29 2018 %p A222731 b:= proc(n, p) option remember; `if`(n=0, [1, 0], `if`(p<1, [0, 0], %p A222731 add((l->`if`(m=3, l+[0, l[1]*p], l))(b(n-p*m, p-1)), m=0..n/p))) %p A222731 end: %p A222731 a:= n-> b(n, n)[2]: %p A222731 seq(a(n), n=3..50); %t A222731 b[n_, p_] := b[n, p] = If[n == 0 && p == 0, {1, 0}, If[p == 0, Array[0&, n+2], Sum[Function[l, ReplacePart[l, m+2 -> p*l[[1]] + l[[m+2]]]][Join[b[n-p*m, p-1], Array[0&, p*m]]], {m, 0, n/p}]]]; a[n_] := b[n, n][[5]]; Table[a[n], {n, 3, 50}] (* _Jean-François Alcover_, Jan 24 2014, after _Alois P. Heinz_ *) %Y A222731 Column k=3 of A222730. %K A222731 nonn %O A222731 3,4 %A A222731 _Alois P. Heinz_, Mar 03 2013