cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A080569 a(n) is the first number in the first run of at least n successive numbers, all having exactly 3 distinct prime factors.

This page as a plain text file.
%I A080569 #39 Jun 23 2025 14:32:49
%S A080569 30,230,644,1308,2664,6850,10280,39693,44360,48919,218972,526095,
%T A080569 526095,526095,17233173,127890362,29138958036,146216247221,
%U A080569 23671413563491,36966736685739
%N A080569 a(n) is the first number in the first run of at least n successive numbers, all having exactly 3 distinct prime factors.
%C A080569 The 19th term, if it exists, is at least 1.1 * 10^12. - _Fred Schneider_, Jan 05 2008
%C A080569 There can be at most 209 terms in this sequence. Any list of 210 consecutive numbers must contain a number n which is multiple of 2*3*5*7 = 210. So omega(n) would be >3. - _Fred Schneider_, Jan 05 2008
%C A080569 Eggleton and MacDougall show that there are no more than 59 terms in this sequence. [From _T. D. Noe_, Oct 13 2008]
%C A080569 a(19) > 10^13. - _Donovan Johnson_, Jun 11 2013
%C A080569 a(19) <= 7523987244435061. - _Donovan Johnson_, Jul 08 2013
%C A080569 a(21) > 2 * 10^15, if it exists. - _Toshitaka Suzuki_, Jun 23 2025
%H A080569 Roger B. Eggleton and James A. MacDougall, <a href="http://www.jstor.org/stable/27643119">Consecutive integers with equally many principal divisors</a>, Math. Mag. 81 (2008), 235-248.
%H A080569 Carlos Rivera, <a href="http://www.primepuzzles.net/puzzles/puzz_427.htm">Prime Puzzle 427. Runs of consecutive numbers such that... (I)</a>, The Prime Puzzles & Problems Connection.
%e A080569 a(3) = 644 because 644 = 2^2 * 7 * 23, so omega(644) = 3, 645 = 3*5*43, so omega(645) = 3 and 646 = 2*17*19, so omega(646) = 3 and no other number n < 644 has omega(n)=omega(n+1)=omega(n+2)=3.
%t A080569 k = 1; Do[ While[ Union[ Table[ Length[ FactorInteger[i]], {i, k, k + n - 1}]] != {3}, k++ ]; Print[k], {n, 1, 16}]
%o A080569 (PARI) k=1; for(i=1,600000,s=1; for(j=1,k,if(omega(i+j-1)!=3,s=0,)); if(s==1,print1(i,", "); k++; i--,) )
%Y A080569 Cf. A064708, A064709, A185032, A048932.
%K A080569 fini,nonn
%O A080569 1,1
%A A080569 _Randy L. Ekl_, Feb 21 2003
%E A080569 Edited and extended by _Robert G. Wilson v_, Feb 22 2003
%E A080569 More terms from _Don Reble_, Mar 02 2003
%E A080569 a(19)-a(20) from _Toshitaka Suzuki_, Apr 01 2025