login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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.
0
2, 12, 36, 180, 720, 2520, 27720, 110880, 720720, 10810800, 122522400, 1396755360, 6983776800, 160626866400, 4497552259200, 130429015516800, 2021649740510400, 74801040398884800, 3066842656354276800, 263748468446467804800, 18594267025475980238400
OFFSET
1,1
EXAMPLE
Triangle begins:
2,
12, 36,
180, 720, 2520,
27720, 110880, 720720, 10810800,
122522400, 1396755360, ...
PROG
(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;
CROSSREFS
Cf. A000203 (sigma), A004394 (supersequence), A134716 (1st column).
Sequence in context: A181825 A169630 A192385 * A361570 A294464 A366618
KEYWORD
nonn,tabl
AUTHOR
Michel Marcus, Apr 25 2022
EXTENSIONS
More terms from David A. Corneth, Apr 25 2022
STATUS
approved