A034174 a(n) is minimal such that prime factorizations of a(n)-n+1, ..., a(n) have same exponents.
1, 3, 35, 19943, 204327, 380480350, 440738966079
Offset: 1
Examples
a(4)=19943 because 19940, ..., 19943 all have the form p^2 q r.
Links
- Don Reble, A034173(8) exists, SeqFan list, Oct 23 2012
- Index entries for sequences related to primes in arithmetic progressions
Programs
-
PARI
A034174(n)={my(f); for(k=n, oo, f=0; for(i=0, n-1, f==(f=vecsort(factor(k-i)[, 2])) || !i || [k+=n-i-1; next(2)]); return(k))} \\ For illustrative purpose; not useful for n>=6. - M. F. Hasler, Oct 28 2012
Formula
a(n) = A034173(n) + n - 1. - Max Alekseyev, Nov 10 2009
Extensions
a(7) from Donovan Johnson, Oct 20 2009
Comments