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!)
A093549 a(n) is the smallest number m such that each of the numbers m-1, m and m+1 has n distinct prime divisors. 4
3, 21, 645, 37961, 1042405, 323567035, 30989984675, 10042712381261 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) <= A093550(n) since here the factors do not occur necessarily to the first power, e.g. a(2)-1 = 20 = 2^2*5, therefore A093550(2) > a(2). - M. F. Hasler, May 20 2014
LINKS
FORMULA
a[n_] := (For[m=2, !(Length[FactorInteger[m-1]]==n && Length[FactorInteger[m]]==n&&Length[FactorInteger[m+1]]==n), m++ ];m)
EXAMPLE
a(3)=645 because 644=2^2*7*23; 645=3*5*43; 646=2*17*19 and 645 is the smallest number m such that each of the numbers m-1, m and m+1 has 3 distinct prime divisors.
MATHEMATICA
a[n_] := (For[m=2, !(Length[FactorInteger[m-1]]==n && Length[FactorInteger[m]]==n&&Length[FactorInteger[m+1]]==n), m++ ]; m); Do[Print[a[n]], {n, 7}]
PROG
(PARI) a(n, m=2)=until(, for(k=-1, 1, omega(m-k)!=n&&(m+=2-k)&&next(2)); return(m)) \\ M. F. Hasler, May 20 2014
CROSSREFS
Sequence in context: A111432 A180999 A181003 * A012044 A350513 A098918
KEYWORD
more,nonn
AUTHOR
Farideh Firoozbakht, Apr 07 2004
EXTENSIONS
a(7) from Donovan Johnson, Apr 07 2008
a(8) from Donovan Johnson, Jan 15 2009
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 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)