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!)
A306034 Number of length-n restricted growth strings (RGS) with growth <= ten and first element in [10]. 3
1, 10, 155, 3035, 70500, 1877083, 56019305, 1844512570, 66219313755, 2568394851483, 106837050484924, 4737487302902715, 222819378516865825, 11068264704881204698, 578536038611685742843, 31718762374848254987147, 1818933941414434687198820 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp(Sum_{j=1..10} (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+10))
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..10)), x, n+1), x, n):
seq(a(n), n=0..25);
CROSSREFS
Column k=10 of A306024.
Cf. A305970.
Sequence in context: A261802 A246239 A235340 * A129460 A200989 A268883
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 17 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 April 25 10:51 EDT 2024. Contains 371967 sequences. (Running on oeis4.)