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”).

A225737
Numbers n such that n < d(n)^(29/10), where d(n) is the number of divisors of n.
2
2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 22, 24, 26, 27, 28, 30, 32, 33, 34, 35, 36, 38, 39, 40, 42, 44, 45, 46, 48, 50, 51, 52, 54, 55, 56, 60, 63, 64, 66, 68, 70, 72, 75, 76, 78, 80, 81, 84, 88, 90, 92, 96, 98, 99, 100, 102, 104, 105, 108, 110
OFFSET
1,1
COMMENTS
Alternatively, we could write n^10 < d(n)^29. The last odd term is a(6362) = 225225.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..21466 (complete sequence)
MATHEMATICA
t = {}; Do[If[n < DivisorSigma[0, n]^(29/10), AppendTo[t, n]], {n, 10^7}]; t
CROSSREFS
Cf. A034884 (n < d(n)^2), A175495 (n < 2^d(n)), A056757 (n < d(n)^3).
Sequence in context: A080672 A056757 A349898 * A357315 A079333 A063938
KEYWORD
nonn,fini,full
AUTHOR
T. D. Noe, May 14 2013
STATUS
approved