login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A306031
Number of length-n restricted growth strings (RGS) with growth <= seven and first element in [7].
3
1, 7, 77, 1071, 17689, 335083, 7117789, 166862583, 4266097185, 117856459427, 3492369757317, 110332338885167, 3697474419284233, 130877053323860507, 4875005854140483629, 190478720135836588519, 7784916624799021983345, 331981949761308979115795
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp(Sum_{j=1..7} (exp(j*x)-1)/j).
MAPLE
b:= proc(n, m) option remember; `if`(n=0, 1,
add(b(n-1, max(m, j)), j=1..m+7))
end:
a:= n-> b(n, 0):
seq(a(n), n=0..25);
# second Maple program:
a:= n-> n!*coeff(series(exp(add((exp(j*x)-1)/j, j=1..7)), x, n+1), x, n):
seq(a(n), n=0..25);
CROSSREFS
Column k=7 of A306024.
Cf. A305967.
Sequence in context: A349364 A267709 A234466 * A249933 A107866 A034176
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 17 2018
STATUS
approved