login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A107912 Numbers k that require two iterations of the sigma function to be >= 2*k. 4
2, 3, 4, 5, 7, 8, 10, 11, 14, 15, 16, 17, 19, 21, 22, 23, 26, 27, 29, 31, 32, 33, 34, 35, 38, 39, 41, 44, 45, 46, 47, 50, 51, 52, 53, 55, 57, 58, 59, 62, 63, 64, 65, 68, 69, 71, 74, 75, 76, 77, 79, 82, 83, 85, 86, 87, 89, 91, 92, 93, 94, 95, 98, 99, 101, 103, 105, 106, 107 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
sigma(8) = 15 but sigma(sigma(8)) = 25, so 8 is in the sequence.
MATHEMATICA
ds2Q[n_]:=Module[{ds1=DivisorSigma[1, n]}, ds1<2n<=DivisorSigma[1, ds1]]; Select[Range[120], ds2Q] (* Harvey P. Dale, Feb 13 2011 *)
PROG
(PARI) is(n) = {my(m = n, nn = 2*n, c = 0); while(m < nn, m = sigma(m); c++); c == 2; } \\ Amiram Eldar, Mar 18 2024
CROSSREFS
Sequence in context: A191847 A321290 A274337 * A190850 A066077 A219040
KEYWORD
nonn
AUTHOR
Jud McCranie, May 27 2005
EXTENSIONS
Offset 1 by Michel Marcus, Apr 25 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 15 06:17 EDT 2024. Contains 374324 sequences. (Running on oeis4.)