OFFSET
0,2
COMMENTS
We define a (normal) pattern to be a finite sequence covering an initial interval of positive integers. Patterns are counted by A000670 and ranked by A333217. A sequence S is said to contiguously match a pattern P if there is a contiguous subsequence of S whose parts have the same relative order as P. For example, (3,1,1,3) contiguously matches (1,1,2) and (2,1,1) but not (2,1,2), (1,2,1), (1,2,2), or (2,2,1).
LINKS
EXAMPLE
The patterns contiguously matched by (3,2,2,1) are: (), (1), (1,1), (2,1), (2,1,1), (2,2,1), (3,2,2,1). Note that (3,2,1) is not contiguously matched. See A335837 for a larger example.
MATHEMATICA
mstype[q_]:=q/.Table[Union[q][[i]]->i, {i, Length[Union[q]]}];
Table[Sum[Length[Union[mstype/@ReplaceList[y, {___, s___, ___}:>{s}]]], {y, IntegerPartitions[n]}], {n, 0, 8}]
CROSSREFS
The version for compositions in standard order is A335474.
The version for compositions is A335457.
The not necessarily contiguous version is A335837.
Patterns contiguously matched by prime indices are counted by A335516.
Contiguous divisors are counted by A335519.
Minimal patterns avoided by prime indices are counted by A335550.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 27 2020
EXTENSIONS
More terms from Jinyuan Wang, Jun 27 2020
STATUS
approved