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.

A340720 Least positive number k such that sigma(k) = n * sigma(k+1).

Original entry on oeis.org

14, 12, 180, 25908120
Offset: 1

Views

Author

Seiichi Manyama, Jan 17 2021

Keywords

Examples

			  n | sigma(a(n)) | sigma(a(n)+1)
----+-------------+--------------
  1 |          24 |            24
  2 |          28 |            14
  3 |         546 |           182
  4 |   103680000 |      25920000
		

Crossrefs

Programs

  • PARI
    {a(n) = my(k=1); while(sigma(k)!=n*sigma(k+1), k++); k}