|
| |
|
|
A194727
|
|
Number of 7-ary words either empty or beginning with the first character of the alphabet, that can be built by inserting n doublets into the initially empty word.
|
|
3
|
|
|
|
1, 1, 13, 205, 3565, 65821, 1265677, 25066621, 507709165, 10466643805, 218878998733, 4631531585341, 98980721277613, 2133274258946845, 46313701181477005, 1011889827742935805, 22232378278653590125, 490899296804667191005, 10887346288742800406605
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
0,3
|
|
|
LINKS
|
Alois P. Heinz, Table of n, a(n) for n = 0..200
|
|
|
FORMULA
|
G.f.: 6/7 + 12/(7*(5+7*sqrt(1-24*x))).
a(0) = 1, a(n) = 1/n * Sum_{j=0..n-1} C(2*n,j)*(n-j)*6^j for n>0.
|
|
|
EXAMPLE
|
a(2) = 13: aaaa, aabb, aacc, aadd, aaee, aaff, aagg, abba, acca, adda, aeea, affa, agga (with 7-ary alphabet {a,b,c,d,e,f,g}).
|
|
|
MAPLE
|
a:= n-> `if` (n=0, 1, add (binomial (2*n, j) *(n-j) *6^j, j=0..n-1) /n):
seq (a(n), n=0..20);
|
|
|
CROSSREFS
|
Column k=7 of A183134.
Sequence in context: A057807 A057804 A215621 * A059355 A206348 A145270
Adjacent sequences: A194724 A194725 A194726 * A194728 A194729 A194730
|
|
|
KEYWORD
|
nonn
|
|
|
AUTHOR
|
Alois P. Heinz, Sep 02 2011
|
|
|
STATUS
|
approved
|
| |
|
|