cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A007373 Numbers k such that sigma(k+2) = sigma(k).

Original entry on oeis.org

33, 54, 284, 366, 834, 848, 918, 1240, 1504, 2910, 2913, 3304, 4148, 4187, 6110, 6902, 7169, 7912, 9359, 10250, 10540, 12565, 15085, 17272, 17814, 19004, 19688, 21410, 21461, 24881, 25019, 26609, 28124, 30592, 30788, 31484, 38210, 38982, 39786, 40310, 45354
Offset: 1

Views

Author

Keywords

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

Crossrefs

Programs

  • 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 *)
  • PARI
    je=[]; for(n=1,10^5,a=sigma(n); b=sigma(n+2); if(a==b,je=concat(je,n))); je

Extensions

More terms from Jason Earls, Jul 20 2001