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

A120123
Numbers n such that n=(d_1*d_2*...*d_k)*phi(d_1+d_2+...+d_k) where d_1 d_2... d_k is the decimal expansion of n.
2
1, 2, 672, 34992, 139968
OFFSET
1,2
COMMENTS
Conjecture: 139968 is the largest term. Except for the first term, all terms are even. 139968 is also in A120121 & A120122, so it has a very pleasant property (see the Comments lines of A120121).
LINKS
EXAMPLE
34992 is in the sequence because 34992=(3*4*9*9*2)*phi(3+4+9+9+2).
MATHEMATICA
Do[If[h = IntegerDigits[n]; l = Length[h]; n == Product[h[[k]], {k, l}]*EulerPhi[Sum[h[[k]], {k, l}]], Print[n]], {n, 50000000}]
CROSSREFS
Sequence in context: A156938 A285221 A079195 * A140014 A188698 A209364
KEYWORD
base,nonn
AUTHOR
Farideh Firoozbakht, Aug 12 2006
STATUS
approved