Advertisement
MatsGranvik

Numerators of logarithms are negated sums of powers roots of unity.

Aug 26th, 2022 (edited)
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. (*start*)
  2. Clear[x, roots, n, k];
  3. TableForm[Table[polynomial = Sum[x^(k), {k, 1, n}];
  4. polynomial, {n, 1, 12}]]
  5.  
  6. TableForm[Table[polynomial = Sum[x^(k), {k, 1, n}];
  7. roots = x /. NSolve[polynomial == 0, x];
  8. Re[Table[-Total[roots^h], {h, 1, 12}]], {n, 1, 12}]]
  9. (*end*)
  10.  
  11. "Numerators of Dirichlet series for logarithms are negated sums of powers roots of unity."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement