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 A293738 #9 Dec 19 2020 03:08:31 %S A293738 1,1,3,7,20,54,164,500,1630,5471,19246,70020,264961,1035540,4187725, %T A293738 17440159,74817905,329400093,1487844185,6873585346,32460719143, %U A293738 156315314070,767106102127,3828629444020,19423438144438,99998608025751,522200287437179,2762351298913471 %N A293738 Number of multisets of nonempty words with a total of n letters over octonary alphabet such that within each prefix of a word every letter of the alphabet is at least as frequent as the subsequent alphabet letter. %C A293738 This sequence differs from A293110 first at n=9. %H A293738 Alois P. Heinz, <a href="/A293738/b293738.txt">Table of n, a(n) for n = 0..1000</a> %F A293738 G.f.: Product_{j>=1} 1/(1-x^j)^A007580(j). %F A293738 a(n) ~ c * 8^n / n^14, where c = 4485962145436.6348123684794... - _Vaclav Kotesovec_, Dec 19 2020 %p A293738 g:= proc(n) option remember; `if`(n<4, [1, 1, 2, 4][n+1], %p A293738 ((40*n^3+1084*n^2+8684*n+18480)*g(n-1) +16*(n-1)* %p A293738 (5*n^3+107*n^2+610*n+600)*g(n-2) -1024*(n-1)*(n-2)* %p A293738 (n+6)*g(n-3) -1024*(n-1)*(n-2)*(n-3)*(n+4)*g(n-4)) %p A293738 /((n+7)*(n+12)*(n+15)*(n+16))) %p A293738 end: %p A293738 a:= proc(n) option remember; `if`(n=0, 1, add(add(g(d) %p A293738 *d, d=numtheory[divisors](j))*a(n-j), j=1..n)/n) %p A293738 end: %p A293738 seq(a(n), n=0..35); %Y A293738 Column k=8 of A293108. %Y A293738 Cf. A007580, A293110, A293747. %K A293738 nonn %O A293738 0,3 %A A293738 _Alois P. Heinz_, Oct 15 2017