Consider splitting an integer interval $[1..N]$ into non-overlapping subintervals $[i_k..j_k],\,i_k \le j_k$, i.e. $$ [1..N] = \bigcup_{k=1}^{K} \, [i_k..j_k] \quad i_1 =1, i_{k+1} = j_{k}+1, j_K=N $$ How many ways can this be done?
Example: $[1,2,3]$: The set of possibilities is $\{[1]\cup[2]\cup[3],[1]\cup[2,3],[1,2]\cup[3],[1,2,3] \}$ for a total of $4$.
This question is related to Splitting the set $A=\{1,2,...,n\}$ into at most $m$ non-empty disjoint subsets, whose union is $A$, but differs in that here the subsets must consist of contiguous numbers.