OFFSET
1,1
COMMENTS
The smallest number containing all the possible digits is 123468889999999. - Jianing Song, Nov 21 2019
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
694 is a term as the geometric mean of digits is (6*9*4)^(1/3)= 6.
MATHEMATICA
Select[Range[9000], GeometricMean[IntegerDigits[#]]==6&] (* Harvey P. Dale, May 29 2021 *)
PROG
(Haskell)
a061429 n = a061429_list !! (n-1)
a061429_list = filter (h 1 1) [1..] where
h 0 _ _ = False
h u v 0 = u == v
h u v w = h (r * u) (6 * v) w' where (w', r) = divMod w 10
-- Reinhard Zumkeller, Jan 13 2014
CROSSREFS
KEYWORD
AUTHOR
Amarnath Murthy, May 03 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), May 16 2001
STATUS
approved