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!)
A281745 Numbers k with the property that the square root of the product of the digits of k is equal to the sum of the square roots of its digits. 1
1, 2, 3, 4, 5, 6, 7, 8, 9, 44, 149, 194, 228, 282, 333, 419, 491, 822, 914, 941, 11199, 11444, 11919, 11991, 14144, 14414, 14441, 19119, 19191, 19911, 41144, 41414, 41441, 44114, 44141, 44411, 91119, 91191, 91911, 99111, 11111449, 11111494, 11111944, 11114149 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
1 is a term because sqrt(1) = sqrt(1);
44 is a term because sqrt(4*4) = sqrt(4) + sqrt(4);
941 is a term because sqrt(9*4*1) = sqrt(9) + sqrt(4) + sqrt(1).
MATHEMATICA
Select[Range[10^6], Sqrt[Times @@ #] == Total[Sqrt@ #] &@ IntegerDigits@ # &] (* Michael De Vlieger, Feb 02 2017 *)
PROG
(PARI) isok(n) = my(d = vecsort(digits(n))); sqrt(prod(k=1, #d, d[k])) == sum(k=1, #d, sqrt(d[k])); \\ Michel Marcus, Jan 29 2017
CROSSREFS
Sequence in context: A342442 A342755 A129513 * A302501 A183532 A257829
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms from Jon E. Schoenfield, Jan 30 2017
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)