A352281 Regular triangle read by rows, T(n,k) is the least integer m such that sigma(m)/m is greater than n + (k-1)/n.
2, 12, 36, 180, 720, 2520, 27720, 110880, 720720, 10810800, 122522400, 1396755360, 6983776800, 160626866400, 4497552259200, 130429015516800, 2021649740510400, 74801040398884800, 3066842656354276800, 263748468446467804800, 18594267025475980238400
Offset: 1
Examples
Triangle begins: 2, 12, 36, 180, 720, 2520, 27720, 110880, 720720, 10810800, 122522400, 1396755360, ...
Programs
-
PARI
isok(i,n,k) = sigma(i)/i > n+(k-1)/n; T(n,k) = my(i=1); while(!isok(i,n,k), i++); i;
Extensions
More terms from David A. Corneth, Apr 25 2022