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.

A107913 Numbers k that require three iterations of the sigma function to be >= 2*k.

Original entry on oeis.org

9, 13, 25, 37, 43, 49, 61, 67, 73, 97, 109, 121, 151, 157, 163, 169, 181, 193, 211, 225, 229, 241, 277, 283, 289, 313, 331, 337, 361, 373, 397, 409, 421, 433, 457, 487, 523, 529, 541, 547, 577, 601, 613, 625, 631, 661, 673, 691, 709, 729, 733, 751, 757, 787
Offset: 1

Views

Author

Jud McCranie, May 27 2005

Keywords

Examples

			sigma(sigma(9)) = 14 but sigma(sigma(sigma(9))) = 24, so 9 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    is3Q[n_]:=Boole[#>=2n&/@NestList[DivisorSigma[1,#]&,n,3]]=={0,0,0,1}; Select[Range[ 800],is3Q] (* Harvey P. Dale, Jul 09 2023 *)
  • PARI
    is(n) = {my(m = n, nn = 2*n, c = 0); while(m < nn, m = sigma(m); c++); c == 3;} \\ Amiram Eldar, Mar 18 2024

Extensions

Offset 1 by Michel Marcus, Apr 25 2020