A283495 Smallest k such that there is a number whose divisors sum to k*n.
1, 2, 1, 1, 3, 1, 1, 1, 2, 2, 4, 1, 1, 2, 1, 2, 4, 1, 2, 1, 2, 2, 6, 1, 6, 3, 2, 1, 6, 2, 1, 1, 4, 2, 4, 1, 2, 1, 1, 1, 4, 1, 6, 1, 2, 3, 6, 1, 2, 3, 2, 2, 4, 1, 2, 1, 1, 3, 6, 1, 3, 2, 1, 2, 3, 2, 6, 1, 2, 2, 4, 1, 7, 1, 2, 2, 4, 1, 2, 1, 2, 2, 4, 1, 3, 3, 2, 2, 23, 1, 1, 4, 1, 3, 6, 1
Offset: 1
Keywords
Examples
a(2) = 2 because (number of numbers whose divisor sum to 2*2) = 1.
Programs
-
PARI
a(n)=my(k=oo,m,t); while(m
Charles R Greathouse IV, Mar 09 2017
Extensions
Corrected by Charles R Greathouse IV, Mar 09 2017
Comments