login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A328899 Numbers k such that the k-th repunit (10^k-1)/9 sets a new record for the number of distinct prime factors. 2

%I #16 Nov 02 2019 04:26:28

%S 1,2,3,6,12,18,24,30,42,60,84,96,120,168,180,210,240,252,300,360,420,

%T 630,660

%N Numbers k such that the k-th repunit (10^k-1)/9 sets a new record for the number of distinct prime factors.

%C The corresponding numbers of distinct prime factors are in A095371.

%C a(20) > 322.

%C From _Chai Wah Wu_, Oct 30 2019: (Start)

%C Since A095371(19) = 40, to show that a(20) > 323 we use the fact that (10^323-1)/9) is a product of 4 primes and a 271-digit composite number C. We then use a computer search to show that C has no prime factor <= floor(C^(1/(41-4))) = 19858291. This implies that (10^323-1)/9) has less than 41 distinct prime factors. Applying this same approach to 337 and 353 (the only numbers between 323 and 359 for which the complete factorization of the corresponding repunit is not known) and using the factorization of (10^360-1)/9 with 44 distinct prime factors show that a(20) = 360 and A095371(20) = 44. This approach also shows that a(21) = 420 and A095371(21) = 55.

%C (End)

%C a(24) <= 840. Conjecture: a(24) = 840, a(25) = 1260, a(26) = 1680, a(27) = 1980, a(28) = 2520, a(29) = 3360, a(30) = 3780, a(31) = 3960, a(32) = 4620, a(33) = 5040, a(34) = 6300, a(35) = 7560, a(36) = 9240, a(37) = 10080. - _Chai Wah Wu_, Nov 01 2019

%t r[n_] := (10^n - 1)/9; L = {}; bst = -1; Do[v = PrimeNu[r[n]]; If[v > bst, bst = v; AppendTo[L, n]], {n, 60}]; L

%t (* or, based on the b-file of A095370: *)

%t w = Last /@ Cases[Import["https://oeis.org/A095370/b095370.txt", "Table"], {_Integer, _Integer}]; L={}; bst=-1; Do[If[w[[j]] > bst, AppendTo[L, j]; bst = w[[j]]], {j, Length@w}]; L

%Y Cf. A001221, A002275, A095370, A095371.

%K nonn,base,hard,more

%O 1,2

%A _Giovanni Resta_, Oct 30 2019

%E a(20)-a(21) from _Chai Wah Wu_, Oct 30 2019

%E a(22)-a(23) from _Chai Wah Wu_, Nov 01 2019

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 23 13:21 EDT 2024. Contains 374549 sequences. (Running on oeis4.)