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 A261845 #4 Sep 03 2015 07:01:25 %S A261845 1,7,28,476,1386,8106,117936,322764,1440579,6172495,99773646, %T A261845 232110704,981073576,3329628176,14040114012,224848217580,490210909629, %U A261845 1828885568055,5750093241172,20040621544916,69910543160794,1238596672832718,2451410591056280,8705347941656016 %N A261845 Number of compositions of n into distinct parts where each part i is marked with a word of length i over a septenary alphabet whose letters appear in alphabetical order. %C A261845 Also matrices with seven rows of nonnegative integers with distinct positive column sums and total element sum n. %H A261845 Alois P. Heinz, <a href="/A261845/b261845.txt">Table of n, a(n) for n = 0..5000</a> %p A261845 b:= proc(n, i, p) option remember; %p A261845 `if`(i*(i+1)/2<n, 0, `if`(n=0, p!, b(n, i-1, p)+ %p A261845 `if`(i>n, 0, b(n-i, i-1, p+1)*binomial(i+6, 6)))) %p A261845 end: %p A261845 a:= n-> b(n$2, 0): %p A261845 seq(a(n), n=0..25); %Y A261845 Column k=7 of A261835. %K A261845 nonn %O A261845 0,2 %A A261845 _Alois P. Heinz_, Sep 03 2015