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”).

A073045
Nonprime solutions to sopfr(n) = S(n), where sopfr(n) = A001414 and S(n) = A002034.
1
4, 9, 25, 27, 49, 121, 125, 169, 289, 343, 361, 529, 625, 841, 961, 1331, 1369, 1681, 1849, 2197, 2209, 2401, 2809, 3125, 3481, 3721, 4489, 4913, 5041, 5329, 6241, 6859, 6889, 7921, 9409, 10201, 10609, 11449, 11881, 12167, 12769, 14641, 16129, 16807
OFFSET
1,1
LINKS
EXAMPLE
sopfr(9) = S(9) = 6 and 6 is composite, so 9 is a term.
PROG
(PARI) {for(n=1, 17000, if(!isprime(n), s=0; fac=factor(n); for(i=1, matsize(fac)[1], s=s+fac[i, 1]*fac[i, 2]); m=1; p=1; while(p%n>0, m++; p=p*m); if(s==m, print1(n, ", "))))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Jason Earls, Aug 24 2002
EXTENSIONS
Edited and extended by Klaus Brockhaus, Aug 26 2002
STATUS
approved