A015704 a(n) is the smallest number m such that phi(m) + sigma(m) = n*m.
1, 312, 23760, 336280120525440
Offset: 2
Links
- Richard K. Guy, Divisors and desires, Amer. Math. Monthly, 104 (1997), 359-360.
Programs
-
PARI
a(n) = my(m = 1); while(sigma(m)+eulerphi(m) != n*m, m++); m; \\ Michel Marcus, Oct 04 2017
Extensions
Name, offset and data corrected by Farideh Firoozbakht, Jan 22 2008
a(5) confirmed by Martin Ehrenstein, Jan 15 2024
Comments