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

A103482
Least k such that d(k) > product_{i=1..n} d(k-i)*d(k+i), where d(k) is the number of divisors of k.
0
12, 107100, 5055850800
OFFSET
1,1
COMMENTS
Erdos and Suranyi prove that for every n there is a k such that d(k) > product_{i=1..n} d(k-i)*d(k+i). This sequence shows the least k for each n.
a(4) <= 205841401769203200. The number of divisors of a(4) must be > 36864. a(5) > 15824908106788068288000. The number of divisors of a(5) must be > 589824. [From Donovan Johnson, Mar 18 2010]
REFERENCES
Paul Erdős and Janos Suranyi, Topics in the Theory of Numbers, Springer, 2003, p. 247.
EXAMPLE
a(2) = 107100 because 107100 is the least number that satisfies the inequality for n = 2. Note d(107100) = 108, d(107101) = d(107099) = 2 and d(107102) = d(107098) = 4.
MATHEMATICA
k = 1; Table[dc=Table[DivisorSigma[0, k+i], {i, 0, 2n}]; k=k+n; While[dc[[n+1]]^2 <= Times@@dc, k++; dc=RotateLeft[dc]; dc[[2n+1]]=DivisorSigma[0, k+n]]; Print[{k, dc}]; k, {n, 2}]
CROSSREFS
Cf. A000005 (number of divisors of n).
Sequence in context: A289295 A289569 A051368 * A056540 A331093 A369523
KEYWORD
more,nonn,bref
AUTHOR
T. D. Noe, Feb 08 2005
STATUS
approved