login
A389477
Primes p such that psi(p+3) = psi(p+4) = psi(p+5).
0
11, 41, 59, 953
OFFSET
1,1
COMMENTS
If it exists, a(5) > 4*10^10.
EXAMPLE
11 is in the sequence since psi(11+3) = psi(11+4) = psi(11+5) = 24.
MATHEMATICA
psi[n_] := psi[k] = n * Times @@ (1 + 1/FactorInteger[n][[;; , 1]]); psi[1] = 1; Select[Prime[Range[200]], psi[#+3] == psi[#+4] == psi[#+5] &] (* Amiram Eldar, Oct 05 2025 *)
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
S. I. Dimitrov, Oct 05 2025
STATUS
approved