| Author |
Comment/Response |
stephanos
|
07/03/08 06:20am
I am trying to define a function f[n], such that it is a sum over the prime divisors of n. I tried using
g[n_] = Intersection[Divisors[n], Primes]
f[n_] = Total[g[n]]
My problem is that when I try to define g[n_] I get an error message that states that a nonatomic expression is expected at position 2 of the Intersection.
Thank you for your time,
Stephanos
URL: , |
|