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

A110069
Numbers n such that n = (d_1 + d_2 + ... + d_k)*prime(d_1*d_2*...*d_k) where d_1 d_2 ... d_k is the decimal expansion of n.
1
188217, 216925, 329319, 22146969, 236256594, 269226639788
OFFSET
1,1
COMMENTS
There is no further term up to 660000000.
This sequence is finite since (d_1+d_2+...+d_k)*prime(d_1*d_2*...*d_k) <= 9k * prime(9^k) << 9^k * k^2 << n. The bound can be made effective using the results of Dusart or others; for example, a(n) < 10^150. These can be improved with more work, but completing the sequence seems hard. - Charles R Greathouse IV, May 07 2011
a(7) > 7*10^14, if it exists. - Giovanni Resta, Jun 01 2020
If it exists, a(7) > 10^18. - Max Alekseyev, Jan 28 2024
EXAMPLE
236256594 is in the sequence because 236256594 = (2 + 3 + 6 + 2 + 5 + 6 + 5 + 9 +4)*prime(2*3*6*2*5*6*5*9*4).
MATHEMATICA
Do[h = IntegerDigits[m]; l = Length[h]; If[Min[h] > 0 && m == Sum[h[[k]], {k, l}]*(Prime[Product[h[[k]], {k, l}]]), Print[m]], {m, 655000000}]
CROSSREFS
Sequence in context: A253481 A186137 A233715 * A006028 A257756 A206018
KEYWORD
nonn,base,fini,more
AUTHOR
Farideh Firoozbakht, Jul 17 2005
EXTENSIONS
a(6) from Giovanni Resta, Jun 01 2020
STATUS
approved