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 A226875 #23 Sep 21 2017 11:30:10 %S A226875 1,1,3,10,47,246,882,3921,18223,84790,432518,1863951,8892842,42656147, %T A226875 204204353,1025014815,4728033983,22948258742,111605089014, %U A226875 541696830843,2708218059022,12861557284425,62938669549583,308273057334413,1508708926286914,7533652902408071 %N A226875 Number of n-length words w over a 5-ary alphabet {a1,a2,...,a5} such that #(w,a1) >= #(w,a2) >= ... >= #(w,a5) >= 0, where #(w,x) counts the letters x in word w. %H A226875 Alois P. Heinz, <a href="/A226875/b226875.txt">Table of n, a(n) for n = 0..1000</a> %F A226875 Conjecture: a(n) ~ 5^n/5!. - _Vaclav Kotesovec_, Mar 07 2014 %p A226875 b:= proc(n, i, t) option remember; %p A226875 `if`(t=1, 1/n!, add(b(n-j, j, t-1)/j!, j=i..n/t)) %p A226875 end: %p A226875 a:= n-> n!*b(n, 0, 5): %p A226875 seq(a(n), n=0..30); %t A226875 Table[Sum[Sum[Sum[Sum[Sum[If[i+j+k+l+m==n,n!/i!/j!/k!/l!/m!,0],{m,0,l}],{l,0,k}],{k,0,j}],{j,0,i}],{i,0,n}],{n,0,20}] (* _Vaclav Kotesovec_, Jul 01 2013 *) %t A226875 CoefficientList[Series[(HypergeometricPFQ[{},{},x]^5 + 10*HypergeometricPFQ[{},{},x]^3*HypergeometricPFQ[{},{1},x^2] + 20*HypergeometricPFQ[{},{},x]^2*HypergeometricPFQ[{},{1,1},x^3] + 20*HypergeometricPFQ[{},{1},x^2]*HypergeometricPFQ[{},{1,1},x^3] + 15*HypergeometricPFQ[{},{1},x^2]^2*HypergeometricPFQ[{},{},x] + 30*HypergeometricPFQ[{},{1,1,1},x^4]*HypergeometricPFQ[{},{},x] + 24*HypergeometricPFQ[{},{1,1,1,1},x^5])/5!,{x,0,20}],x]*Range[0,20]! (* more efficient, _Vaclav Kotesovec_, Jul 01 2013 *) %Y A226875 Column k=5 of A226873. %Y A226875 Cf. A027306, A092255, A092429. %K A226875 nonn %O A226875 0,3 %A A226875 _Alois P. Heinz_, Jun 21 2013