Advertisement
Guest User

mathematica ouput

a guest
Nov 24th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. In[59]=
  2. ClearAll[a];
  3. a[n_]:=Plus[1/n c[n],Plus @@ (Function[m,(-m/n) a[m]^(n/m)] /@ Drop[Divisors[n],-1])] ;
  4. a[30]
  5.  
  6. 2 3 5
  7. -c[1] c[2] 15 -c[1] c[3] 10 -c[1] c[5] 6
  8. 30 (------ + ----) (------ + ----) (------ + ----)
  9. -c[1] 2 2 3 3 5 5
  10. Out[59]= ------- - ----------------- - ----------------- - ---------------- -
  11. 30 15 10 6
  12.  
  13. 2 3
  14. -c[1] c[2] 3 -c[1] c[3] 2
  15. 6 (------ + ----) (------ + ----)
  16. -c[1] 2 2 3 3 c[6] 5
  17. (------ - ---------------- - ---------------- + ----)
  18. 6 3 2 6
  19. > ------------------------------------------------------ -
  20. 5
  21.  
  22. 2 5
  23. -c[1] c[2] 5 -c[1] c[5] 2
  24. 10 (------ + ----) (------ + ----)
  25. -c[1] 2 2 5 5 c[10] 3
  26. (------- - ---------------- - ---------------- + -----)
  27. 10 5 2 10
  28. > -------------------------------------------------------- -
  29. 3
  30.  
  31. 3 5
  32. -c[1] c[3] 5 -c[1] c[5] 3
  33. 15 (------ + ----) (------ + ----)
  34. -c[1] 3 3 5 5 c[15] 2
  35. (------- - ---------------- - ---------------- + -----)
  36. 15 5 3 15 c[30]
  37. > -------------------------------------------------------- + -----
  38. 2 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement