OFFSET
2,1
EXAMPLE
a(7) = 13 as the total number of distinct prime factors of 13 is 1, while with digital reversals of 13 in base 2, 3, 4, 5, 6, 7 are 11, 13, 7, 17, 8, 43 respectively, all of which have one distinct prime factor. No smaller number satisfies this criterion.
PROG
(PARI) isok(k, n) = my(v=vector(n-1, b, omega(fromdigits(Vecrev(digits(k, b+1)), b+1)))); (#Set(v) == 1) && (v[1] == omega(k));
a(n) = my(k=2); while(!isok(k, n), k++); k; \\ Michel Marcus, Feb 16 2026
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Scott R. Shannon, Feb 07 2026
STATUS
approved
