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 A243124 #6 May 29 2014 18:51:22 %S A243124 1,0,8,8,44,80,236,513,1246,2780,6280,13786,30070,64696,134585,285384, %T A243124 594786,1207084,2453682,4972098,9946044,19646041,38691878,75939596, %U A243124 147425468,283809162,546291230,1042095956,1977521091,3730060870,7022446786,13104269980 %N A243124 Number of compositions of n in which the maximal multiplicity of parts equals 7. %H A243124 Alois P. Heinz, <a href="/A243124/b243124.txt">Table of n, a(n) for n = 7..1000</a> %F A243124 a(n) = A243085(n) - A243084(n) = A243081(n,7) - A243081(n,6). %p A243124 b:= proc(n, i, p, k) option remember; `if`(n=0, p!, `if`(i<1, 0, %p A243124 add(b(n-i*j, i-1, p+j, k)/j!, j=0..min(n/i, k)))) %p A243124 end: %p A243124 a:= n-> b(n$2, 0, 7) -b(n$2, 0, 6): %p A243124 seq(a(n), n=7..50); %Y A243124 Column k=7 of A242447. %K A243124 nonn %O A243124 7,3 %A A243124 _Alois P. Heinz_, May 29 2014