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

 


A306027
Number of length-n restricted growth strings (RGS) with growth <= three and first element in [3].
4
1, 3, 15, 95, 717, 6221, 60619, 652595, 7667957, 97415437, 1328078067, 19310628827, 297932883437, 4856255827013, 83315165338923, 1499606140412403, 28237439054261893, 554849548137840189, 11351488777441797187, 241314920928367232747, 5320846918247724517117
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp(Sum_{j=1..3} (exp(j*x)-1)/j).
EXAMPLE
a(2) = 15: 11, 12, 13, 14, 21, 22, 23, 24, 25, 31, 32, 33, 34, 35, 36.
MAPLE
b:= proc(n, m) option remember; `if`(n=0, 1,
add(b(n-1, max(m, j)), j=1..m+3))
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..3)), x, n+1), x, n):
seq(a(n), n=0..25);
CROSSREFS
Column k=3 of A306024.
Cf. A189845.
Sequence in context: A177341 A220262 A365560 * A354412 A304072 A076301
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 17 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 19:38 EDT 2024. Contains 376089 sequences. (Running on oeis4.)