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.

A374593 Numbers k such that k - rad(k) + 1 is prime, where rad(k) is the radical A007947(k).

Original entry on oeis.org

4, 8, 9, 12, 18, 20, 24, 32, 36, 40, 44, 45, 48, 49, 50, 56, 60, 63, 72, 75, 80, 81, 84, 88, 90, 92, 99, 104, 108, 116, 117, 128, 132, 136, 140, 144, 147, 153, 156, 160, 162, 164, 168, 169, 180, 184, 200, 204, 207, 212, 216, 224, 225, 234, 240, 243, 245, 250
Offset: 1

Views

Author

Arsen Vardanyan, Aug 23 2024

Keywords

Comments

Includes 4*p for p in A005384, 8*p for p in A007693, and 16*p for p in A228857. - Robert Israel, Jun 27 2025

Examples

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

Crossrefs

Programs

  • Maple
    rad:= n -> convert(numtheory:-factorset(n),`*`):
    select(k -> isprime(k - rad(k)+1), [$1..1000]); # Robert Israel, Jun 27 2025
  • Mathematica
    rad[n_] := Times @@ (First@# & /@ FactorInteger@ n);Select[Range[250],PrimeQ[#-rad[#]+1]&] (* James C. McMahon, Sep 27 2024 *)
  • PARI
    isok(k) = isprime(k - (factorback(factor(k)[, 1])) + 1);
Showing 1-1 of 1 results.