OFFSET
1,2
EXAMPLE
840 with 32 divisors cannot be the term after 720 because 720 - 360 = 360 and 840 - 720 is 120 < 360. On the other hand, 1080 (also with 32 divisors) can because 720 - 360 = 360 and 1080 - 720 = 360 >= 360.
MAPLE
A137425 := proc(n) option remember; local a, tprev ; if n <= 3 then 2^(n-1); else tprev := numtheory[tau](procname(n-1)) ; for a from 2*procname(n-1)-procname(n-2) do if numtheory[tau](a) > tprev then return a; end if; end do: end if; end proc: seq(A137425(n), n=1..43) ; # R. J. Mathar, Mar 20 2010
CROSSREFS
KEYWORD
nonn
AUTHOR
J. Lowell, Apr 17 2008
EXTENSIONS
More terms from R. J. Mathar, Mar 20 2010
STATUS
approved