OFFSET
1,1
COMMENTS
Numbers k such that k + 3*A001414(k) is prime.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 20 is a term because 20 + 3 * (2 + 2 + 5) = 47 is prime.
MAPLE
spf:= proc(n) local t; add(t[1]*t[2], t=ifactors(n)[2]) end proc:
select(t -> isprime(t+3*spf(t)), [$1..1000]);
MATHEMATICA
q[n_] := PrimeQ[n + 3 * Plus @@ Times @@@ FactorInteger[n]]; Select[Range[2, 300], q] (* Amiram Eldar, Nov 13 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Will Gosnell and Robert Israel, Nov 13 2025
STATUS
approved
