The sum of reciprocals of primes is infinite, but if you add up 1/p for the primes we KNOW you only get to about 4.
A comment by u/GoldenMuscleGod reminded me of something I saw a while ago. Others can correct me if some of this information is out of date.
Define S(n) to be the sum of 1/p for all primes p less than or equal to n.
S(n) diverges - indeed Euler showed that you can bound it below with an expression that grows with log(log(n+1)) (log is natural log), and we can use log(log(n)) as an estimate of S(n) as n gets large.
That's painfully slow growth. It's not until n = 5,195,977 that S(n) reaches 3. And we have to sum up using all the primes up to around 10^18 to get to 4. But (based on searches I have done), in terms of finding all primes up to n (without gaps), 10^18 or so is roughly as far as computers have taken us - worldwide, that's all we know. So using only the primes we know, S(n) is about 4.
Of course, you will point out that we do know some primes larger than 10^18 , indeed much larger due to people searching for them. But that list is very sparse:
The largest known prime is around 10^41,024,319 and the tenth largest known prime is around 10^11,887,191 . The sum of 1/p for those ten largest primes is a rounding error (basically something less than 10^-11,887,190 ). But between those two primes there must be around 10^41,000,000 primes with a sum of 1/p of around 1, so virtually all that sum is missing from our knowledge.
Indeed S(n) where n is the largest known prime will be around 18. So there's a whole 14 contributed to S(n) by all the primes between 10^18 and the largest known. To get S(n) even up to 5, we would need to find primes up to around 10^50 - that's around 10^48 primes we need to find, and computers have so far only found 10^16 primes, so I don't think that's going to happen.