A365885 Starts of run of 3 consecutive integers that are terms of A365883.
228123, 903123, 1121875, 2253123, 2928123, 3146875, 3821875, 4278123, 5846875, 6303123, 6978123, 7196875, 7871875, 9003123, 9221875, 9896875, 10353123, 11028123, 11246875, 12378123, 13053123, 13271875, 13946875, 14403123, 15971875, 16428123, 17103123, 17321875
Offset: 1
Examples
228123 = 3^3 * 7 * 17 * 71 is a term since its least prime factor, 3, is equal to its exponent, the least prime factor of 228123 = 2^2 * 13 * 41 * 107, 2, is equal to its exponent, and the least prime factor of 228125 = 5^5 * 73, 5, is also equal to its exponent.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
q[n_] := Equal @@ FactorInteger[n][[1]]; Select[8*Range[125000] + 3, AllTrue[# + {0, 1, 2}, q] &]
-
PARI
is(n) = #Set(factor(n)[1,]) == 1; lista(kmax) = forstep(k = 3, kmax, 8, if(is(k) && is(k+1) && is(k+2), print1(k, ", ")));
Comments