OFFSET
3,1
COMMENTS
The function d(k-1) + d(k+1) is a measure of the compositeness of the numbers next to k. There is no k for n=1 and n=2. Some terms can be quite large; for example, a(99) = 6533135.
LINKS
Donovan Johnson, Table of n, a(n) for n = 3..880
FORMULA
Least k such that A189827(k) = n.
MATHEMATICA
nn = 100; t = Table[-1, {nn}]; t[[1]] = t[[2]] = 0; cnt = 2; n = 1; While[cnt < nn, n++; s = DivisorSigma[0, n-1] + DivisorSigma[0, n+1]; If[s <= nn && t[[s]] == -1, t[[s]] = n; cnt++]]; Drop[t, 2]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Apr 28 2011
STATUS
approved