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!)
A036457 Numbers k for which exactly 5 applications of A000005 are needed to reach 2. 4
60, 72, 84, 90, 96, 108, 126, 132, 140, 150, 156, 160, 180, 198, 200, 204, 220, 224, 228, 234, 240, 252, 260, 276, 288, 294, 300, 306, 308, 315, 336, 340, 342, 348, 350, 352, 360, 364, 372, 380, 392, 396, 414, 416, 420, 432, 444, 450, 460, 468, 476, 480 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Subsequences include A030630 (numbers with 12 divisors), A030636 (numbers with 18 divisors), A030638 (numbers with 20 divisors), A137491 (numbers with 28 divisors), etc. [edited by Jon E. Schoenfield, May 12 2018]
LINKS
FORMULA
d(d(d(d(d(a(n))))))) = 2 for all n.
A036459(a(n)) = 5. - Ivan Neretin, Jan 25 2016
EXAMPLE
a(13)=180; the successive iterates are 18, 6, 4, 3, and finally the 5th is 2;
a(3)=84; divisor numbers are 12, 6, 4, 3, and 2.
MAPLE
A036459:= proc(n) option remember;
if n <= 2 then 0 else 1 + procname(numtheory:-tau(n)) fi
end proc:
select(A036459 = 5, [$1..1000]); # Robert Israel, Jan 25 2016
MATHEMATICA
Select[Range@ 480, Last@ # == 2 && #[[5]] != 2 &@ NestList[DivisorSigma[0, #] &, #, 5] &] (* Michael De Vlieger, Jan 26 2016 *)
PROG
(PARI) is(n)=for(i=1, 4, n=numdiv(n); if(n<3, return(0))); numdiv(n)==2 \\ Charles R Greathouse IV, Sep 17 2015
CROSSREFS
Sequence in context: A216828 A345997 A131564 * A030630 A068350 A265712
KEYWORD
nonn
AUTHOR
EXTENSIONS
New name from Robert Israel, Jan 25 2016
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 April 19 09:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)