I'm working on a project that will run $n=10000$ experiments. In this experiment, $j$ events will occur (an unknown number). Each of the events has a value $E_j$ attached to it. We expect these values to follow a normal distribution, although this is yet to be proven.
The events are measured using $k=100$ traps. These traps are reset at the start of each experiment. Each trap is configured to trigger if they observe an event value within their range $R_k$. All of the traps are configured to have the same size. The trap ranges are half-open and they are adjacent. This way any event $E$ where $\lfloor R_0 \rfloor \leq E \le \lceil R_{k-1}\rceil$, will trigger exactly one trap. At the end of the experiment, the state of trap traps is $X_j=1$ if there were any events $E$ where $\lfloor R_j\rfloor \leq E \le \lceil R_j\rceil$. We can only see if a trap was triggered, not how often it was triggered.
We will configure the traps such that a vast majority of the events will be in the range of a trap, we verify this by adding 'catch-all' traps at both ends of the measured range (which should rarely be triggered).
Ideally, we want to estimate $j_n$ per experiment, but we'll happily combine all experiments and estimate $\sum_{n=0}^{10000} j_n$ instead.
An example of what my measurements are like (lower bound for each trap is given, traps ar 5 wide):
Actual things to be measured (unknown in the real experiment):
n=0: 102, 103, 110, 125 (4 events)
n=1: 103, 106, 107, 108, 124, 124 (6 events)
n=2: 105, 117, 137, 138 (4 events)
The actual output from our experiment:
100 105 110 115 120 125 130 135
n=0: x - x - - x - -
n=1: x x - - x - - -
n=2: - x - x - - - x
In this example/simulation, 3 traps were triggered for each of the experiments, and we had $\sum_{n=0}^2 j_n=14$ total events.
This question was edited to be clearer using some formalised notation. Comments and answers may look a bit silly because of this.