A100974 Integers that are Rhonda numbers to base 15.
2392, 2472, 11468, 15873, 17424, 18126, 19152, 20079, 24388, 30758, 31150, 33004, 33550, 37925, 39483, 42550, 44714, 58870, 59605, 66950, 70182, 71485, 71709, 85557, 85848, 86241, 86591, 92150, 110334, 112671, 113300, 116270, 120414
Offset: 1
Examples
The product of the base 15 digits of 2392 is 10*9*7=630. The sum of the prime factors of 2392 is 3*2+13+23=42 and 630=15*42. So 2392 is a Rhonda number to base 15.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
- Eric Weisstein's World of Mathematics, Rhonda Number
Crossrefs
Programs
-
Haskell
a100974 n = a100974_list !! (n-1) a100974_list = filter (rhonda 15) $ iterate z 1 where z x = 1 + if r < 14 then x else 15 * z x' where (x', r) = divMod x 15 -- Function rhonda as in A099542. -- Reinhard Zumkeller, Mar 07 2015
Comments