OFFSET
1,1
EXAMPLE
64 = 2^6
96 = 2^5 * 3
4644 = 2^2 * 3^3 * 43
4944 = 2^4 * 3 * 103
6664 = 2^3 * 7^2 * 17
6966 = 2 * 3^4 * 43
9464 = 2^3 * 7 * 13^2
9996 = 2^2 * 3 * 7^2 * 17
44464 = 2^4 * 7 * 397
44944 = 2^4 * 53^2 = 212^2
46496 = 2^5 * 1453
MATHEMATICA
Select[Range[645000], ContainsOnly[IntegerDigits[#], {4, 6, 9}]&&PrimeOmega[#]==6&] (* James C. McMahon, Jun 05 2024 *)
PROG
(PARI) isok(k) = (bigomega(k) == 6) && (#setminus(Set(digits(k)), Set([4, 6, 9])) == 0); \\ Michel Marcus, Apr 13 2022
CROSSREFS
KEYWORD
base,less,easy,nonn
AUTHOR
Jonathan Vos Post, Nov 18 2005
EXTENSIONS
Missing a(1)=64 prepended and several terms corrected by Georg Fischer and Michel Marcus, Apr 13 2022
STATUS
approved