prob74(N)= { \\ this is just the sum of eulerphi from 2 to N s = 0; for(i=2,N, s += eulerphi(i); ); print(s); }