Summation of 1/p: Logarithmic Growth of N

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 5K views
Dragonfall
Messages
1,023
Reaction score
5
[tex]\sum_{p\leq N}\frac{1}{p}=\log\log N + A + O(\frac{1}{\log N})[/tex]

Does it mean that we can simply replace the O part with a function that is a constant times 1/(log N)? What would be the difference between [tex]A + O(\frac{1}{\log N})[/tex] and [tex]O(1)[/tex]?
 
Physics news on Phys.org
Dragonfall said:
Does it mean that we can simply replace the O part with a function that is a constant times 1/(log N)?

No it doesn't. If f(n)=g(n)+O(h(n)) then there is a constant C where |f(n)-g(n)|<=C*h(n) in some suitable range of n. It does NOT mean f(n)=g(n)+C*h(n). Consider cos(x)=O(1) but we don't have cos(x)=constant.

Dragonfall said:
What would be the difference between [tex]A + O(\frac{1}{\log N})[/tex] and [tex]O(1)[/tex]?

The first gives more information (it implies the second but not vice versa). Even if you don't know the constant A (it can be expressed in terms of an infinite sum over the primes here though) it still says something about the structure of the lower order terms.