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.

Showing 1-1 of 1 results.

A375777 Numbers k such that k - rad(k) - 1 is prime, where rad(k) is A007947(k).

Original entry on oeis.org

8, 9, 12, 16, 18, 24, 25, 27, 28, 32, 36, 40, 45, 48, 49, 54, 56, 60, 63, 64, 75, 76, 84, 90, 96, 98, 100, 108, 112, 120, 121, 124, 126, 136, 144, 148, 152, 153, 160, 171, 175, 180, 184, 189, 196, 198, 204, 207, 208, 220, 228, 232, 243, 250, 261, 264, 270, 276
Offset: 1

Views

Author

Arsen Vardanyan, Aug 27 2024

Keywords

Examples

			12 is a term, because 12 - rad(12) - 1 = 12 - (2 * 3) - 1 = 12 - 6 - 1 = 5 is prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[300], PrimeQ[# - Times @@ FactorInteger[#][[;; , 1]] - 1] &] (* Amiram Eldar, Aug 27 2024 *)
  • PARI
    isok(k) = isprime(k - (vecprod(factor(k)[, 1])) - 1);
Showing 1-1 of 1 results.