Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Economical numbers: write n as a product of primes raised to powers, let D(n) = number of digits in product, l(n) = number of digits in n; sequence gives n such that D(n) < l(n).
14

%I #73 Aug 09 2024 18:45:00

%S 125,128,243,256,343,512,625,729,1024,1029,1215,1250,1280,1331,1369,

%T 1458,1536,1681,1701,1715,1792,1849,1875,2048,2187,2197,2209,2401,

%U 2560,2809,3125,3481,3584,3645,3721,4096,4374,4375,4489,4802,4913

%N Economical numbers: write n as a product of primes raised to powers, let D(n) = number of digits in product, l(n) = number of digits in n; sequence gives n such that D(n) < l(n).

%C A050252(a(n)) < A055642(a(n)). - _Reinhard Zumkeller_, Jun 21 2011

%D Bernardo Recamán, The Bogota Puzzles, Courier Dover Publications, Inc., 2020, p. 77.

%H Reinhard Zumkeller, <a href="/A046759/b046759.txt">Table of n, a(n) for n = 1..10000</a>

%H C. K. Caldwell, The Prime Glossary, <a href="https://t5k.org/glossary/page.php/EconomicalNumber.html">economical number</a>.

%H J.-M. De Koninck and F. Luca, <a href="http://www.emis.de/journals/INTEGERS/papers/a5int2003/a5int2003.Abstract.html">On strings of consecutive economical numbers of arbitrary length</a>, INTEGERS (2005), Volume: 5, Issue: 2, #A5.

%H Jean-Paul Delahaye, <a href="https://www.pourlascience.fr/sd/evolution/pour-la-science-n258-455.php">Les chasseurs de nombres premiers</a>, Pour la Science, No. 258 April 1999. [<a href="https://www.cristal.univ-lille.fr/~jdelahay/dnalor/ChasseursNbPr.pdf">v1</a>].

%H R. G. E. Pinch, <a href="http://www.s369624816.websitehome.co.uk/rgep/rpub.html#62">Economical numbers</a>.

%H R. G. E. Pinch, <a href="https://arxiv.org/abs/math/9802046">Economical numbers</a>, arXiv:math/9802046 [math.NT], 1998.

%H W. Schneider, <a href="http://web.archive.org/web/2004/www.wschnei.de/digit-related-numbers/economical-numbers.html">Economical Numbers</a>.

%H G. Villemin's Almanach of Numbers, <a href="http://villemin.gerard.free.fr/Wwwgvmm/Decompos/Econome.htm">Nombres Economes</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/EconomicalNumber.html">Economical Number.</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Frugal_number">Frugal number</a>.

%e 125 = 5^3, l(n) = 3 and D(n) = 2, so 125 is a member of the sequence.

%t ecoQ[n_] := Total[ Length /@ IntegerDigits /@ Flatten[ FactorInteger[n] /. {p_, 1} -> p]] < Length[ IntegerDigits[n]]; Select[ Range[5000], ecoQ] (* _Jean-François Alcover_, Jul 28 2011 *)

%o (Haskell)

%o a046759 n = a046759_list !! (n-1)

%o a046759_list = filter (\n -> a050252 n < a055642 n) [1..]

%o -- _Reinhard Zumkeller_, Jun 21 2011

%o (PARI) is(n)=my(f=factor(n));sum(i=1,#f[,1], #Str(f[i,1])+if(f[i,2]>1, #Str(f[i,2])))<#Str(n) && n>1 \\ _Charles R Greathouse IV_, Feb 01 2013

%Y Cf. A046758, A046760.

%K nonn,nice,base

%O 1,1

%A _N. J. A. Sloane_, Dec 11 1999

%E More terms from _Eric W. Weisstein_