login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A305966 Number of length-n restricted growth strings (RGS) with growth <= six and fixed first element. 3
1, 1, 7, 70, 875, 12887, 216552, 4065775, 84022595, 1889844292, 45857269017, 1191971998455, 32996489835190, 968034453578997, 29972909437783507, 975944207096597110, 33313664777283768535, 1188852507118147925627, 44246989258071738375272, 1713739685432232160181115 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (n-1)! * [x^(n-1)] exp(x+Sum_{j=1..6} (exp(j*x)-1)/j) for n>0, a(0) = 1.
MAPLE
b:= proc(n, m) option remember; `if`(n=0, 1,
add(b(n-1, max(m, j)), j=1..m+6))
end:
a:= n-> b(n, -5):
seq(a(n), n=0..25);
# second Maple program:
a:= n-> `if`(n=0, 1, (n-1)!*coeff(series(exp(x+add(
(exp(j*x)-1)/j, j=1..6)), x, n), x, n-1)):
seq(a(n), n=0..25);
CROSSREFS
Column k=6 of A305962.
Cf. A306030.
Sequence in context: A346767 A209327 A255519 * A226805 A113343 A124566
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 15 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 27 10:11 EDT 2024. Contains 375468 sequences. (Running on oeis4.)