A368163 a(n) is the smallest number k > 1 such that bigomega(k^n - 1) = n.
3, 4, 4, 10, 17, 8, 25, 5, 28, 9, 81, 13, 289, 64, 100, 41, 6561, 31, 6657, 57, 529, 1025
Offset: 1
Examples
a(5) = 17 is the smallest number of the set {k(i)} = {17, 19, 21, 26, 27, 39, 45, ...} where k(i)^5 - 1 has exactly 5 prime factors counted with multiplicity.
Programs
-
PARI
a(n) = my(k=2); while (bigomega(k^n-1) != n, k++); k;
Comments