OFFSET
1,1
COMMENTS
These are the primes that require the most effort when searching for the least composite c such that A001414(c) is a given prime, where A001414 is sopfr (sum of prime factors with repetition).
From David James Sycamore, Feb 25 2018: (Start)
Also primes for which A295185 gives a new record.
A006512 gives primes p requiring least effort, since then c=2*(p-2). (End)
PROG
(PARI) isok(k, n) = my(f=factor(k)); sum(j=1, #f~, f[j, 1]*f[j, 2]) == n;
scompo(n) = forcomposite(k=4, , if (isok(k, n), return(k)));
lista(nn) = {my(last = 0); forprime(p=4, nn, my(val = scompo(p)); if (val > last, print1(p, ", "); last = val); ); }
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Feb 24 2018
STATUS
approved