OFFSET
1,1
COMMENTS
No number is obtainable by permuting the digits of other members - only one with ascending order of digits is included.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..10000
EXAMPLE
1488 is a term but 1848 is not.
MATHEMATICA
a = {}; b = 4; Do[c = Apply[ Times, IntegerDigits[n]]/b^Floor[ Log[10, n] + 1]; If[c == 1 && Position[a, FromDigits[ Sort[ IntegerDigits[n]]]] == {}, Print[n]; a = Append[a, n]], {n, 1, 10^7}]
PROG
(Python)
from math import prod
from sympy.utilities.iterables import multiset_combinations
def auptod(terms):
n, digits, alst, powsexps2 = 0, 1, [], [(1, 0), (2, 1), (4, 2), (8, 3)]
while n < terms:
target = 4**digits
mcstr = "".join(str(d)*(digits//max(1, r//2)) for d, r in powsexps2)
for mc in multiset_combinations(mcstr, digits):
if prod(map(int, mc)) == target:
n += 1
alst.append(int("".join(mc)))
if n == terms: break
else: digits += 1
return alst
print(auptod(34)) # Michael S. Branicky, Apr 28 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Mar 30 2002
EXTENSIONS
Edited and extended by Robert G. Wilson v, Apr 01 2002
Name edited and a(31) and beyond from Michael S. Branicky, Apr 28 2021
STATUS
approved