OFFSET
1,1
COMMENTS
Numbers k such that antisigma(k+2) - antisigma(k) = 2*k + 3, where antisigma(m) = A024816(m) = sum of nondivisors of m. - Jaroslav Krizek, Mar 17 2013
REFERENCES
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 840.
J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 33, pp 12, Ellipses, Paris 2008.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..10000 (first 1000 terms from Zak Seidov)
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
A. Weingartner, On the Solutions of sigma(n) = sigma(n+k), Journal of Integer Sequences, Vol. 14 (2011), #11.5.5.
R. G. Wilson, V, Letter to N. J. A. Sloane, Jul. 1992
MATHEMATICA
Flatten[Position[Partition[DivisorSigma[1, Range[300000]], 3, 1], {x_, _, x_}]] (* Harvey P. Dale, Aug 08 2011 *)
SequencePosition[DivisorSigma[1, Range[300000]], {x_, _, x_}][[All, 1]] (* Harvey P. Dale, Nov 17 2022 *)
PROG
(PARI) je=[]; for(n=1, 10^5, a=sigma(n); b=sigma(n+2); if(a==b, je=concat(je, n))); je
CROSSREFS
KEYWORD
nonn
EXTENSIONS
More terms from Jason Earls, Jul 20 2001
STATUS
approved