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.

A015863 Numbers k such that sigma(k) = sigma(k+4).

Original entry on oeis.org

51, 66, 115, 220, 319, 1003, 2585, 4024, 4183, 4195, 5720, 5826, 5959, 8004, 8374, 11659, 12367, 12561, 13581, 14338, 15365, 16116, 17840, 18718, 20541, 25130, 29393, 30170, 32665, 36516, 39913, 40660, 42423, 42922, 47841, 49762
Offset: 1

Views

Author

Keywords

References

  • J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 51, p. 19, Ellipses, Paris 2008.

Crossrefs

Programs

  • Mathematica
    Select[Range[60000], DivisorSigma[1, #]==DivisorSigma[1, # + 4] &] (* Vincenzo Librandi, Mar 10 2014 *)
    SequencePosition[DivisorSigma[1,Range[50000]],{x_,,,_,x_}][[;;,1]] (* Harvey P. Dale, Feb 13 2025 *)
  • PARI
    is(n)=sigma(n)==sigma(n+4) \\ Charles R Greathouse IV, Mar 09 2014