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 A244516 #10 May 01 2018 02:47:12 %S A244516 0,0,1,0,0,1,0,0,2,1,2,3,3,2,7,3,5,9,8,7,16,12,17,23,23,25,42,33,43, %T A244516 59,61,59,95,85,104,128,137,148,207,189,233,283,307,320,430,424,498, %U A244516 584,634,686,872,864,1011,1177,1280,1365,1687,1736,1987,2258,2470,2674,3208,3303,3767,4277,4658,5014,5916,6201 %N A244516 Number of partitions of n where the minimal multiplicity of any part is 3. %C A244516 Column k=3 of A243978. %H A244516 Joerg Arndt and Alois P. Heinz, <a href="/A244516/b244516.txt">Table of n, a(n) for n = 1..1000</a> %p A244516 b:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0, %p A244516 b(n, i-1, k) +add(b(n-i*j, i-1, k), j=max(1, k)..n/i))) %p A244516 end: %p A244516 a:= n-> b(n$2, 3) -b(n$2, 4): %p A244516 seq(a(n), n=1..80); %t A244516 b[n_, i_, k_] := b[n, i, k] = If[n == 0, 1, If[i < 1, 0, b[n, i - 1, k] + Sum[b[n - i*j, i - 1, k], {j, Max[1, k], n/i}]]]; %t A244516 a[n_] := b[n, n, 3] - b[n, n, 4]; %t A244516 Array[a, 80] (* _Jean-François Alcover_, May 01 2018, translated from Maple *) %K A244516 nonn %O A244516 1,9 %A A244516 _Joerg Arndt_ and _Alois P. Heinz_, Jun 29 2014