OFFSET
1,1
COMMENTS
See A099542 for definition of Rhonda numbers and for more links.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Rhonda Number
EXAMPLE
a(1) = 1470 = 4*18^2 + 9*18^1 + 12*18^0 = 2*3*5*7*7,
with 4 * 9 * 12 = 18 * (2+3+5+7+7) = 432;
a(10) = 36549 = 6*18^3 + 4*18^2 + 14*18^1 + 9*18^0 = 3*3*31*131,
with 6 * 4 * 14 * 9 = 18 * (3+3+31+131) = 3024.
PROG
(Haskell)
a255735 n = a255735_list !! (n-1)
a255735_list = filter (rhonda 18) $ iterate z 1 where
z x = 1 + if r < 17 then x else 18 * z x' where (x', r) = divMod x 18
-- Function rhonda as in A099542.
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Mar 05 2015
STATUS
approved