login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A064022 a(n) is the smallest value of m such that prod(m) = n*length(m)*sum(m) where prod(m) is the product of the digits of m, length(m) is the number of digits of m, sum(m) is the sum of the digits of m; or 0 if no such m exists. 1
1, 88, 369, 666, 579, 1899, 789, 2688, 999, 3588, 0, 4668, 0, 3789, 4599, 4689, 0, 4789, 0, 5788, 6778, 0, 0, 5889, 35559, 0, 25599, 35667, 0, 35578, 0, 8888, 0, 0, 45577, 25889, 0, 0, 0, 145688, 0, 45579, 0, 0, 55569, 0, 0, 35888, 55677, 245559, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If n is divisible by a prime larger than 7, then n can't divide prod(m), so a(n)=0. Are there any other values of n with a(n)=0?
LINKS
EXAMPLE
a(2)=88 because prod(88)=64, sum(88)=16, length(88)=2, n=2 and 64=2*2*16.
MATHEMATICA
id := IntegerDigits; prod[n_] := Times@@id[n]; l[n_] := Length[id[n]]; sum[n_] := Plus@@id[n]; a[n_] := If[FactorInteger[2n][[ -1, 1]]>7, 0, For[m=1, True, m++, If[prod[m]==n*l[m]sum[m], Return[m]]]]
CROSSREFS
Cf. A007953 (sum), A007954 (prod), A055642 (length), A064023.
Sequence in context: A323612 A235019 A241846 * A116065 A234777 A234770
KEYWORD
nonn,base
AUTHOR
Felice Russo, Sep 18 2001
EXTENSIONS
Corrected by Larry Reeves (larryr(AT)acm.org), Sep 20 2001
Edited by Dean Hickerson, Jun 02 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)