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!)
A068936 Numbers having the sum of distinct prime factors not greater than the sum of exponents in prime factorization, A008472(n)<=A001222(n). 8
1, 4, 8, 16, 27, 32, 48, 64, 72, 81, 96, 108, 128, 144, 162, 192, 216, 243, 256, 288, 320, 324, 384, 432, 486, 512, 576, 640, 648, 729, 768, 800, 864, 972, 1024, 1152, 1280, 1296, 1458, 1536, 1600, 1728, 1792, 1944, 2000, 2048, 2187, 2304, 2560, 2592, 2916 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(5) = 27 = 3^3, 3 = 3;
a(10) = 81 = 3^4, 3 < 4;
a(100) = 16000 = 2^7 * 5^3, 2+5 < 7+3;
a(1000) = 10321920 = 2^15 * 3^2 * 5 * 7, 2+3+5+7 < 15+2+1+1.
MATHEMATICA
fQ[n_] := Block[{f = FactorInteger@n}, Plus @@ Last /@ f >= Plus @@ First /@ f]; Select[ Range@3000, fQ@ # &] (* Robert G. Wilson v *)
Select[Range@ 3000, First@ Differences@ Map[Total, Transpose@ FactorInteger@ #] >= 0 &] (* Michael De Vlieger, Dec 08 2016 *)
PROG
(Haskell)
a068936 n = a068936_list !! (n-1)
a068936_list = [x | x <- [1..], a008472 x <= a001222 x]
-- Reinhard Zumkeller, Nov 10 2013
CROSSREFS
Sequence in context: A331243 A180861 A353316 * A345329 A349112 A325127
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 08 2002
EXTENSIONS
More terms from Robert G. Wilson v, Jan 16 2006
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.)