I'm really confused by what you mean by "data models", and how they are represented in the database. I'm guessing the number of sheets can be arbitrary, so we're not talking about a table with N columns - but rather with a fixed structure and N rows - or am I mistaken? Some more details about your architecture (database, programming language, framework, ready-made tool, etc) would also be welcome, so we can understand better your constraints.
Anyway, the question of whether or not to compute some cover(s) from the other(s) boils down to how costly that operation is (relative to the storage cost and/or other difficulties in keeping the derived values in sync), but in principle I see no problem in storing all 3 covers. My suggestion would be having something like this:
- cover
- cover front
- sheet 1
- ...
- sheet N
- cover back
When printing, you hide/skip cover front and cover back, when editing you start at 2 and disallow moving back to 1. An alternative (if you must assign each sheet an index) could be:
index print edit data
---------------------------------
1 true false cover
1 false true cover front
2 true true sheet 1
3 true true ...
4 true true sheet N
5 false true cover back
This way you can filter your rows either to print or to edit, and they'll always come with consistent indices.