|
Search: id:A080569
|
|
|
| A080569 |
|
a(n) is the first number in a run of at least n successive numbers, all having exactly 3 distinct prime factors. |
|
+0 3
|
|
| 30, 230, 644, 1308, 2664, 6850, 10280, 39693, 44360, 48919, 218972, 526095, 526095, 526095, 17233173, 127890362, 29138958036, 146216247221
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
The 19th term, if it exists, is at least 1.1 * 10^12. - Fred Schneider (frederick.william.schneider(AT)gmail.com), Jan 05 2008
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 (frederick.william.schneider(AT)gmail.com), Jan 05 2008
Eggleton and MacDougall show that there are no more than 59 terms in this sequence. [From T. D. Noe (noe(AT)sspectra.com), Oct 13 2008]
|
|
REFERENCES
|
Roger B. Eggleton and James A. MacDougall, Consecutive integers with equally many principal divisors, Math. Mag. 81 (2008), 235-248. [From T. D. Noe (noe(AT)sspectra.com), Oct 13 2008]
|
|
LINKS
|
Carlos Rivera, Prime Puzzle 427
|
|
EXAMPLE
|
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.
|
|
MATHEMATICA
|
k = 1; Do[ While[ Union[ Table[ Length[ FactorInteger[i]], {i, k, k + n - 1}]] != {3}, k++ ]; Print[k], {n, 1, 16}]
|
|
PROGRAM
|
(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--, ) )
|
|
CROSSREFS
|
Cf. A064708 and A064709.
Adjacent sequences: A080566 A080567 A080568 this_sequence A080570 A080571 A080572
Sequence in context: A042754 A076389 A064241 this_sequence A081779 A069487 A008385
|
|
KEYWORD
|
fini,nonn
|
|
AUTHOR
|
Randy L. Ekl (Randy.Ekl(AT)Motorola.com), Feb 21 2003
|
|
EXTENSIONS
|
Edited and extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Feb 22 2003
More terms from Don Reble (djr(AT)nk.ca), Mar 02 2003
|
|
|
Search completed in 0.002 seconds
|