login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A161577
a(1)=2. a(n) = the smallest integer > a(n-1) such that d(a(n)) >= d(n), where d(n) = the number of divisors of n.
3
2, 3, 4, 6, 7, 8, 9, 10, 12, 14, 15, 18, 19, 20, 21, 24, 25, 28, 29, 30, 32, 33, 34, 36, 38, 39, 40, 42, 43, 48, 49, 50, 51, 52, 54, 60, 61, 62, 63, 66, 67, 70, 71, 72, 75, 76, 77, 80, 81, 84, 85, 88, 89, 90, 91, 96, 98, 99, 100, 108, 109, 110, 112, 114, 115, 120, 121, 124, 125
OFFSET
1,1
COMMENTS
Starting the sequence with a(1)=1 instead would have lead to a(n) = n for all n, obviously.
LINKS
MATHEMATICA
nxt[{n_, a_}]:=Module[{k=a+1, d=DivisorSigma[0, n+1]}, While[DivisorSigma[0, k]<d, k++]; {n+1, k}]; NestList[nxt, {1, 2}, 80][[All, 2]] (* Harvey P. Dale, Aug 30 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Jun 14 2009
EXTENSIONS
Extended beyond 20 by R. J. Mathar, Oct 24 2009
STATUS
approved