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!)
A099542 Rhonda numbers to base 10. 22

%I #42 Feb 23 2024 07:32:55

%S 1568,2835,4752,5265,5439,5664,5824,5832,8526,12985,15625,15698,19435,

%T 25284,25662,33475,34935,35581,45951,47265,47594,52374,53176,53742,

%U 54479,55272,56356,56718,95232,118465,133857,148653,154462,161785

%N Rhonda numbers to base 10.

%C An integer m is a Rhonda number to base b if the product of its digits in base b equals b*(sum of prime factors of m (taken with multiplicity)).

%C Does every Rhonda number to base 10 contain at least one 5? - Howard Berman (howard_berman(AT)hotmail.com), Oct 22 2008

%C Yes, every Rhonda number m to base 10 contains at least one 5 and also one even digit, otherwise A007954(m) mod 10 > 0. - _Reinhard Zumkeller_, Dec 01 2012

%H Reinhard Zumkeller, <a href="/A099542/b099542.txt">Table of n, a(n) for n = 1..1000</a> (first 180 terms from Harvey P. Dale)

%H Kevin Brown, <a href="http://www.mathpages.com/home/kmath007/kmath007.htm">Infinitely Many Rhondas</a>.

%H Giovanni Resta, <a href="http://www.numbersaplenty.com/set/Rhonda_number/">Rhonda numbers</a> the 64507 base-10 Rhonda numbers up to 10^12.

%H Walter Schneider, <a href="http://web.archive.org/web/2004/www.wschnei.de/digit-related-numbers/rhonda-numbers.html">Rhonda Numbers</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RhondaNumber.html">Rhonda Number</a>.

%F A007954(a(n)) = 10 * A001414(a(n)).

%e 1568 has prime factorization 2^5 * 7^2. Sum of prime factors = 2*5 + 7*2 = 24. Product of digits of 1568 = 1*5*6*8 = 240 = 10*24, hence 1568 is a Rhonda number to base 10.

%t Select[Range[200000],10Total[Times@@@FactorInteger[#]]==Times@@ IntegerDigits[ #]&] (* _Harvey P. Dale_, Oct 16 2011 *)

%o (Haskell)

%o import Data.List (unfoldr); import Data.Tuple (swap)

%o a099542 n = a099542_list !! (n-1)

%o a099542_list = filter (rhonda 10) [1..]

%o rhonda b x = a001414 x * b == product (unfoldr

%o (\z -> if z == 0 then Nothing else Just $ swap $ divMod z b) x)

%o -- _Reinhard Zumkeller_, Mar 05 2015, Dec 01 2012

%Y Cf. Rhonda numbers to other bases: A100968 (base 4), A100969 (base 6), A100970 (base 8), A100973 (base 9), A100971 (base 12), A100972 (base 14), A100974 (base 15), A100975 (base 16), A255735 (base 18), A255732 (base 20), A255736 (base 30), A255731 (base 60), see also A255880.

%Y Cf. A001414, A027746, A007954.

%Y Column k=5 of A291925.

%K base,nice,nonn

%O 1,1

%A Mark Hudson (mrmarkhudson(AT)hotmail.com), Oct 21 2004

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 May 2 14:34 EDT 2024. Contains 372197 sequences. (Running on oeis4.)