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!)
A254319 Hyper economical numbers. 2
27, 108, 125, 128, 129, 135, 138, 143, 159, 160, 184, 187, 189, 196, 207, 209, 216, 219, 243, 249, 256, 259, 265, 276, 295, 297, 329, 341, 351, 375, 403, 429, 451, 458, 469, 497, 512, 529, 621, 625, 671, 679, 729, 781, 795, 837, 841, 892, 896, 908, 916, 932 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The distinction between the economical numbers (A046759) is that the distinct digits are counted only instead all digits. Hence the definition:
Write n as product of primes raised to powers, let D(n) = total number of distinct digits in product representation (number of distinct digits in all the primes and number of distinct digits in all the exponents that are greater than 1) and nbd(n) = A043537(n) number of distinct digits in n; sequence gives n such that D(n) < nbd(n).
LINKS
EXAMPLE
27 is in the sequence because 27 = 3 ^ 3 => D(27)= 1 < nbd(27)=2.
MATHEMATICA
Cases[Range[400], n_ /; Length[Union[Flatten[IntegerDigits[FactorInteger[n] /. 1 -> Sequence[]]]]]< Length[Union[Flatten[IntegerDigits[n]]]]]
PROG
(PARI) for(n=1, 10^3, s=[]; F=factor(n); for(i=1, #F[, 1], s=concat(s, digits(F[i, 1])); if(F[i, 2]>1, s=concat(s, digits(F[i, 2])))); if(#vecsort(digits(n), , 8)>#vecsort(s, , 8), print1(n, ", "))) \\ Derek Orr, Jan 30 2015
CROSSREFS
Sequence in context: A140376 A046347 A158549 * A044278 A044659 A244634
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, Jan 28 2015
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 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)