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!)
A045983 Numbers k such that n or more consecutive integers starting at k have the same number of distinct prime divisors. 17
1, 2, 2, 2, 54, 91, 141, 141, 44360, 48919, 218972, 526095, 526095, 526095, 17233173, 127890362, 29138958036, 118968284928, 118968284928, 585927201062, 585927201062, 585927201062, 585927201062 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) = smallest number k such that the n numbers from k through n+k-1 have the same number of prime divisors.
a(24) > 10^12. - Donovan Johnson, Mar 29 2013
LINKS
EXAMPLE
a(5) = 54 as 54, 55, 56, 57, 58 all have 2 prime divisors.
PROG
(PARI) v=vector(16); n=0; c1=0; for(k=1, 127890377, c2=omega(k); if(c1==c2, n++; if(v[n]==0, v[n]=k-n+1; print(n " " v[n])), n=1; c1=c2)) /* Donovan Johnson, Mar 29 2013 */
CROSSREFS
Sequence in context: A175910 A257662 A075042 * A266713 A226745 A102384
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(18)-a(23) from Donovan Johnson, Mar 29 2013
STATUS
approved

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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)