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

A237798
Numbers k such that phi(k) equals the product of two numbers: sums of prime factors of k, with and without repetition.
1
750, 5022, 8037, 18250, 60249, 105669, 1760490, 1965270, 4626489, 62546070, 202631245, 441416073, 286952692809
OFFSET
1,1
COMMENTS
25446095286407049 and 27093686218810118911929 are terms.
EXAMPLE
750 = 2*3*5^3 is a term since phi(750) = 200 = (2+3+5) * (2+3+5+5+5).
MATHEMATICA
Select[Range[2, 10^5], (f=FactorInteger@#; EulerPhi[#] == Total[First /@ f]* Total[Times @@@ f]) &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Giovanni Resta, Feb 13 2014
STATUS
approved