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!)
A100573 Smallest difference between distinct prime divisors of n, or 0 if n is a prime power. 2
0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 1, 0, 5, 2, 0, 0, 1, 0, 3, 4, 9, 0, 1, 0, 11, 0, 5, 0, 1, 0, 0, 8, 15, 2, 1, 0, 17, 10, 3, 0, 1, 0, 9, 2, 21, 0, 1, 0, 3, 14, 11, 0, 1, 6, 5, 16, 27, 0, 1, 0, 29, 4, 0, 8, 1, 0, 15, 20, 2, 0, 1, 0, 35, 2, 17, 4, 1, 0, 3, 0, 39, 0, 1, 12, 41, 26, 9, 0, 1, 6, 21, 28, 45 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,10
LINKS
EXAMPLE
For 30 = 2*3*5, 2 and 3 are separated by only 1, so a(30) = 1.
MATHEMATICA
<<NumberTheory`NumberTheoryFunctions` pfl[x_] :=PrimeFactorList[x] pd[x_] :=Delete[RotateLeft[pfl[x]]-pfl[x], -1] Table[Min[pd[w]], {w, 1, 1000}] (* Labos *)
Table[Min[Differences[Transpose[FactorInteger[n]][[1]]]], {n, 100}]/.\[Infinity]->0 (* Harvey P. Dale, Jul 27 2015 *)
PROG
(PARI) A100573(n) = if(omega(n)<=1, 0, my(ps=factor(n)[, 1]); vecmin(vector((#ps)-1, i, ps[i+1]-ps[i]))); \\ Antti Karttunen, Mar 03 2018
CROSSREFS
Cf. also A046665, A297173.
Sequence in context: A329861 A331332 A300228 * A049087 A178921 A046665
KEYWORD
nonn
AUTHOR
Leroy Quet, Jan 02 2005
EXTENSIONS
More terms from Labos Elemer, Jan 05 2005
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 March 19 07:41 EDT 2024. Contains 370958 sequences. (Running on oeis4.)