Motivation
I am working on a conjecture involving the sequence of least-prime-factors within $k$ consecutive numbers
Let $k=\sqrt{100}$.
$$[ 1, 10] = \{p_*,2,3,2,5,2,7,2,3,2\}$$
$$[81, 90] = \{3,2,p_*,2,5,2,3,2,p_*,2\}$$
$$[91,100] = \{7,2,3,2,5,2,p_*,2,3,2\}$$
I need a placeholder for a prime. I have narrowed this down to: $p_*$ and $p_{\square}$. Is there something else that would be preferred?
Edit additional info about use:
I don't need to track separate primes. I intend to do something like $90$ multichoose $k$ and when I tally the choices, I want the unknown primes to be counted as one choice.

