cp's OEIS Frontend

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.

A226878 Number of n-length words w over an 8-ary alphabet {a1,a2,...,a8} such that #(w,a1) >= #(w,a2) >= ... >= #(w,a8) >= 0, where #(w,x) counts the letters x in word w.

This page as a plain text file.
%I A226878 #15 Sep 21 2017 11:32:22
%S A226878 1,1,3,10,47,246,1602,11481,95503,508150,3436358,21822351,153741722,
%T A226878 1047906107,7987668041,57017211075,456108767423,3047668772102,
%U A226878 22857224364630,163293406206195,1236484989279502,9040845014760345,70057104400850471,517521934394653205
%N A226878 Number of n-length words w over an 8-ary alphabet {a1,a2,...,a8} such that #(w,a1) >= #(w,a2) >= ... >= #(w,a8) >= 0, where #(w,x) counts the letters x in word w.
%H A226878 Alois P. Heinz, <a href="/A226878/b226878.txt">Table of n, a(n) for n = 0..1000</a>
%p A226878 b:= proc(n, i, t) option remember;
%p A226878       `if`(t=1, 1/n!, add(b(n-j, j, t-1)/j!, j=i..n/t))
%p A226878     end:
%p A226878 a:= n-> n!*b(n, 0, 8):
%p A226878 seq(a(n), n=0..30);
%Y A226878 Column k=8 of A226873.
%K A226878 nonn
%O A226878 0,3
%A A226878 _Alois P. Heinz_, Jun 21 2013