I assume that you want to test whether the number of occurences is independent of the county. In this case, may you can try the following:
First, transform your $1\times 3500$ tables to $2\times 3500$ tables (as in this post). Let $T$ be one of the $2\times 3500$ tables you have observed. A test on independence which is independent of the sample size is Fisher's exact test. I don't know how familiar you are with the framework of this test, but roughly speaking it requires to estimate the probability of all $2\times 3500$ that have the same row and column sums as $T$ but a larger $\chi^2$-statistics. For two-rowed tables, there exist efficient algorithms that approximate this $p$-value (have a look at Theorem 4 in this paper). Hope that helps.
EDIT: Since it was not clear that my answer describes an approximative method instead of an exact one, I will extend my anwer.
Again, let $T$ be one of your observed tables and let $n$ be its sample size (that is, the sum of all its entries). Let $\theta\in[0,1]^{2\times 3500}$ be the log-likelihood estimators for the independence model and define for a table $v\in\mathbb{N}^{2\times 3500}$ the $\chi^2$ statistics as
$$\chi^2(v)=\sum_{i=1}^2\sum_{j=1}^{3500}\frac{(v_{ij}-n\cdot\theta_{ij})^2}{n\cdot\theta_{ij}}.$$
Let $\mathcal{F}(T)\subset\mathbb{N}^{2\times 3500}$ be the set of all tables that have the same rows- and column sums than $T$, then the conditional $p$-value of Fisher's exact test is
$$\frac{\sum_{v\in\mathcal{F}(T), \chi^2(v)\ge\chi^2(T)}
\frac{1}{\prod_{i=1}^2\prod_{j=1}^{3500}v_{ij}!}
}{\sum_{v\in\mathcal{F}}
\frac{1}{\prod_{i=1}^2\prod_{j=1}^{3500}v_{ij}!}}$$
Of course, this value is impossible to compute exactly, since the size of $\mathcal{F}(T)$ is humongous. However, it can be approximated efficiently with the following adapted version of the algorithm in this paper. For an observed table $T$, do the following
- Initialize with $i=0$, $w=T$
- $i=i+1$
- get another table $w'$ from $\mathcal{F}(T)$ by applying one step of the algorithm in this paper (Section 4)
- With probability $\min\left\{1,\frac{\prod_{ij}w_{ij}!}{\prod_{ij}w'_{ij}!}\right\}$, set $w:=w'$, otherwise let $w$ untouched (that is the Metropolis-Hastings rejection step)
- If $\chi^2(w)\ge\chi^2(T)$, then $p_i:=1$, otherwise $p_i=0$
- If $|\frac{1}{i-1}\sum_{k=1}^{i-1}p_k-\frac{1}{i}\sum_{k=1}^{i}p_k|>tol$, GOTO (2)
- Return $\frac{1}{i}\sum_{k=1}^ip_k$
The output is an estimation of the conditional $p$-value.