© Copyright 2000, 2001, Donald Simon & Bret Larget, Department of Mathematics and Computer Science, Duquesne University.
A
repeat count is indicated by a caret (^). For example,
1^20,2^5,3^2
means that the first twenty sites are in category 1, the next five
sites are in 2, and the next two sites are in category
3.
Parentheses may be used to group sites together with a common
repeat count, i.e., (1,2)^5
is the same as
1,2,1,2,1,2,1,2,1,2
. Repeat counts may be nested, e.g., (1^3,2)^2
is
the same as 1,1,1,2,1,1,1,2
.
Repetition to the end of the list of
sites is indicated by an asterisk (*). For example, 1^5,2*
means
that the first five sites are in category 1, and all the remaining
sites are in category 2. Parentheses may also be used in conjunction
with the asterisk, e.g., (1,2)*
is the same as 1,2,1,2,1,2,....
The
category list may contain at most one asterisk and it must be
associated with the last category or group in the list. In other
words, an asterisk may appear only at the end of the list.
1*
(1,2,3)*
1^99,2^50,3^9
(1,2,3)^33,4^50,(1,2,3)^3
(1,2,3)^33,4^50,(5,6,7)^3
(1,2,3)^33,1,2,4^50,(5,6,7)^3
Back to the table of contents.
bambe@mathcs.duq.edu