OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
40 has the prime-factorization 2^3 * 5^1. So the exponents are 3 and 1. 40 in binary is 101000. 3 = 11 in binary. 11 does not occur anywhere in 101000. 1 is 1 in binary. 1 does occur (twice) in 101000. At least one exponent (3 = 11 in binary) does not occur in 101000 (= 40 in decimal), so 40 is in the sequence.
MAPLE
isA144096 := proc(n) local n2, a, ifa, e2, p ; n2 := convert(n, base, 2) ; ifa := ifactors(n)[2] ; for p in ifa do e2 := convert( op(2, p), base, 2) ; if not verify(n2, e2, 'superlist') then RETURN(true) ; fi; od: RETURN(false) ; end: for n from 1 to 2000 do if isA144096(n) then printf("%d, ", n) ; fi; od: # R. J. Mathar, Sep 17 2008
MATHEMATICA
noexQ[n_]:=Min[SequenceCount[IntegerDigits[n, 2], #]&/@(IntegerDigits[#, 2]&/@(FactorInteger[ n][[;; , 2]]))]==0; Select[Range[1200], noexQ] (* Harvey P. Dale, Dec 06 2023 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Leroy Quet, Sep 10 2008
EXTENSIONS
63 and 64 inserted and extended by R. J. Mathar, Sep 17 2008
STATUS
approved