cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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.

Original entry on oeis.org

2, 12, 36, 180, 720, 2520, 27720, 110880, 720720, 10810800, 122522400, 1396755360, 6983776800, 160626866400, 4497552259200, 130429015516800, 2021649740510400, 74801040398884800, 3066842656354276800, 263748468446467804800, 18594267025475980238400
Offset: 1

Views

Author

Michel Marcus, Apr 25 2022

Keywords

Examples

			Triangle begins:
  2,
  12, 36,
  180, 720, 2520,
  27720, 110880, 720720, 10810800,
  122522400, 1396755360, ...
		

Crossrefs

Cf. A000203 (sigma), A004394 (supersequence), A134716 (1st column).

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