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.

A054984 Composite numbers k such that sigma(k + 6!) = sigma(k + 720) = sigma(k) + 720.

Original entry on oeis.org

427, 553, 595, 623, 737, 871, 913, 923, 1199, 1207, 1241, 1507, 1582, 1817, 1848, 2193, 2226, 2337, 2398, 2407, 2553, 2561, 2728, 2758, 2929, 3016, 3115, 3248, 3346, 3502, 3503, 3598, 3705, 3762, 4171, 4293, 4343, 4462, 4587, 4633, 4841, 4867, 4984
Offset: 1

Views

Author

Labos Elemer, May 29 2000

Keywords

Examples

			553 is a term because sigma(553) + 720 = 640 + 720 = 1360 = sigma(553 + 720) = sigma(1273) = 1 + 19 + 67 + 1273.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[5000], CompositeQ[#] && Differences@ DivisorSigma[1, {#, # + 720}] == {720} &] (* Amiram Eldar, Mar 09 2025 *)
  • PARI
    isok(k) = !isprime(k) && sigma(k + 720) == sigma(k) + 720; \\ Amiram Eldar, Mar 09 2025