OFFSET
1,1
COMMENTS
See sequence A099542 for definition of Rhonda numbers and for some links.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Rhonda Number
EXAMPLE
The product of the base 14 digits of 11475 is 4*2*7*9=504, the sum of the prime factors of 11475 is 3*3+2*5+17=46 and 504=14*36, so 11475 is a Rhonda number to base 14.
PROG
(Haskell)
a100972 n = a100972_list !! (n-1)
a100972_list = filter (rhonda 14) $ iterate z 1 where
z x = 1 + if r < 13 then x else 14 * z x' where (x', r) = divMod x 14
-- Function rhonda as in A099542.
-- Reinhard Zumkeller, Mar 07 2015
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Mark Hudson (mrmarkhudson(AT)hotmail.com), Nov 25 2004
STATUS
approved