login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A359213
Numbers k such that rad(k) - 1 is prime.
4
3, 6, 9, 12, 14, 18, 24, 27, 28, 30, 36, 38, 42, 48, 54, 56, 60, 62, 72, 74, 76, 81, 84, 90, 96, 98, 102, 108, 110, 112, 114, 120, 124, 126, 138, 144, 148, 150, 152, 158, 162, 168, 174, 180, 182, 192, 194, 196, 204, 216, 220, 224, 228, 230, 240, 243, 248, 252
OFFSET
1,1
LINKS
EXAMPLE
rad(60) - 1 = 2*3*5 - 1 = 29, so 60 is a term.
MATHEMATICA
Select[Range[250], PrimeQ[Times @@ FactorInteger[#][[;; , 1]] - 1] &] (* Amiram Eldar, Dec 21 2022 *)
PROG
(PARI) isok(k) = isprime(factorback(factor(k)[, 1]) - 1); \\ Michel Marcus, Dec 22 2022
CROSSREFS
Sequence in context: A168045 A288522 A226894 * A091780 A331060 A329514
KEYWORD
nonn
AUTHOR
Arsen Vardanyan, Dec 21 2022
STATUS
approved