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!)
A061430 Geometric mean of the digits is an integer: k-digit numbers such that the product of the digits is a number of the form m^k. 6
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 19, 20, 22, 28, 30, 33, 40, 41, 44, 49, 50, 55, 60, 66, 70, 77, 80, 82, 88, 90, 91, 94, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 118, 120, 124, 130, 139, 140, 142, 150, 160, 170, 180, 181, 188, 190, 193 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
694 is a term as (6*9*4)^(1/3) = 6 is an integer.
MATHEMATICA
Select[Range[0, 200], IntegerQ[GeometricMean[IntegerDigits[#]]]&] (* Harvey P. Dale, Feb 15 2012 *)
PROG
(Haskell)
a061430 n = a061430_list !! (n-1)
a061430_list = filter g [0..] where
g u = round (fromIntegral p ** (1 / fromIntegral k)) ^ k == p where
(p, k) = h (1, 0) u
h (p, l) 0 = (p, l)
h (p, l) v = h (p * r, l + 1) v' where (v', r) = divMod v 10
-- Reinhard Zumkeller, Jan 13 2014
CROSSREFS
Sequence in context: A365472 A034894 A263564 * A065448 A254656 A211408
KEYWORD
nonn,base,easy,nice
AUTHOR
Amarnath Murthy, May 03 2001
EXTENSIONS
More terms from Naohiro Nomoto, May 11 2001
STATUS
approved

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 April 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)