MatsGranvik

Latex for Möbius function and Mertens function in Wikipedia

May 28th, 2020 (edited)
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. $$\mu(n) = \underset{n = 1}{1} - \underset{a = n}{\sum_{a \geq 2}} 1 + \underset{ab = n}{\sum_{a \geq 2} \sum_{b \geq 2}} 1 - \underset{abc = n}{\sum_{a \geq 2} \sum_{b \geq 2} \sum_{c \geq 2}} 1 + \underset{abcd = n}{\sum_{a \geq 2} \sum_{b \geq 2} \sum_{c \geq 2} \sum_{d \geq 2}} 1 - \cdots$$
  2.  
  3. $$M(x) = 1 - \sum_{2 \leq a \leq x} 1 + \underset{ab \leq x}{\sum_{a \geq 2} \sum_{b \geq 2}} 1 - \underset{abc \leq x}{\sum_{a \geq 2} \sum_{b \geq 2} \sum_{c \geq 2}} 1 + \underset{abcd \leq x}{\sum_{a \geq 2} \sum_{b \geq 2} \sum_{c \geq 2} \sum_{d \geq 2}} 1 - \cdots $$
  4.  
  5.  
  6. ===As a sum of the number of points under n-dimensional hyperboloids{{citation needed|date=July 2018}}===
  7.  
  8. :<math>M(x) = 1 - \sum_{2 \leq a \leq x} 1 + \underset{ab \leq x}{\sum_{a \geq 2} \sum_{b \geq 2}} 1 - \underset{abc \leq x}{\sum_{a \geq 2} \sum_{b \geq 2} \sum_{c \geq 2}} 1 + \underset{abcd \leq x}{\sum_{a \geq 2} \sum_{b \geq 2} \sum_{c \geq 2} \sum_{d \geq 2}} 1 - \cdots</math>
  9.  
  10. This formulation expanding the Mertens function suggests asymptotic bounds obtained by considering the [[Divisor_summatory_function#Piltz_divisor_problem|Piltz divisor problem]] which generalizes the [[Divisor_summatory_function|Dirichlet divisor problem]] of computing [[asymptotic estimate]]s for the summatory function of the [[divisor function]].
  11.  
  12.  
  13. nn = 15;
  14. Table[Sum[If[a^2 == n, 1, 0], {a, 1, nn}] -
  15. Sum[Sum[If[a^2*b == n, 1, 0], {a, 1, nn}], {b, 2, nn}] +
  16. Sum[Sum[Sum[If[a^2*b*c == n, 1, 0], {a, 1, nn}], {b, 2, nn}], {c, 2,
  17. nn}] - +Sum[
  18. Sum[Sum[Sum[If[a^2*b*c*d == n, 1, 0], {a, 1, nn}], {b, 2,
  19. nn}], {c, 2, nn}], {d, 2, nn}], {n, 1, nn}]
  20. LiouvilleLambda[Range[nn]]
  21. %% - %
Add Comment
Please, Sign In to add comment