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 A226876 #13 Sep 21 2017 11:31:05 %S A226876 1,1,3,10,47,246,1602,6441,35023,175510,1017158,5412111,33991322, %T A226876 168112907,982269641,5378704155,31714236863,174819971462, %U A226876 1082436507990,5756932808211,34302363988462,193719726696345,1150224854410151,6482217725030141,39812123155826626 %N A226876 Number of n-length words w over a 6-ary alphabet {a1,a2,...,a6} such that #(w,a1) >= #(w,a2) >= ... >= #(w,a6) >= 0, where #(w,x) counts the letters x in word w. %H A226876 Alois P. Heinz, <a href="/A226876/b226876.txt">Table of n, a(n) for n = 0..1000</a> %p A226876 b:= proc(n, i, t) option remember; %p A226876 `if`(t=1, 1/n!, add(b(n-j, j, t-1)/j!, j=i..n/t)) %p A226876 end: %p A226876 a:= n-> n!*b(n, 0, 6): %p A226876 seq(a(n), n=0..30); %Y A226876 Column k=6 of A226873. %K A226876 nonn %O A226876 0,3 %A A226876 _Alois P. Heinz_, Jun 21 2013