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.

A343242 Nonprime numbers k such that A054008(k) = A054024(k).

Original entry on oeis.org

1, 20, 196, 368, 650, 672, 780, 836, 1888, 2352, 3192, 11096, 17816, 20496, 30240, 51060, 84660, 130304, 979992, 1848964, 2291936, 3767100, 4526272, 8353792, 15126992, 15287976, 23569920, 33468416, 45532800, 74899952, 381236216, 623799776, 712023296, 1845991216
Offset: 1

Views

Author

Amiram Eldar, Apr 08 2021

Keywords

Comments

If p is an odd prime then A054008(p) = A054024(p) = 2. Therefore, this sequence is restricted to nonprime numbers.

Examples

			20 is a term since it is a nonprime number and A054008(20) = A054024(20) = 2.
		

Crossrefs

Subsequences: A047728, A245782.

Programs

  • Mathematica
    Select[Range[10^6], !PrimeQ[#] && Mod[#, DivisorSigma[0, #]] == Mod[DivisorSigma[1, #], #] &]