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!)
A188348 Distance between n and the next number with the same number of distinct prime factors. 1
1, 1, 1, 2, 4, 1, 1, 2, 2, 2, 2, 3, 1, 3, 1, 2, 2, 4, 1, 1, 2, 2, 2, 2, 2, 2, 5, 2, 12, 1, 5, 1, 1, 1, 2, 4, 1, 1, 4, 2, 18, 4, 1, 1, 2, 2, 2, 4, 1, 1, 2, 6, 1, 1, 1, 1, 4, 2, 6, 3, 1, 2, 3, 3, 4, 4, 1, 3, 8, 2, 2, 6, 1, 1, 1, 3, 6, 2, 2, 2, 3, 6, 6, 1, 1, 1, 3, 8, 12 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,4
LINKS
FORMULA
{min d>0: A001221(n+d) = A001221(n)}.
MAPLE
N:= 200: # to use numbers up to N
V:= Array(2..N, n -> nops(numtheory:-factorset(n))):
A:= Array(2..N):
for n from 2 to N do
v:= V[n];
if assigned(Last[v]) then
A[Last[v]]:= n-Last[v]
fi;
Last[v]:= n;
od:
m:= min(select(t -> A[t]=0, [$2..N]))-1:
seq(A[i], i=2..m); # Robert Israel, Jan 24 2020
PROG
(PARI) for(n=2, 100, f=omega(n); m=n+1; while(omega(m)!=f, m++); print1(m-n, ", ")) \\ Colin Barker, Jun 27 2014
CROSSREFS
Sequence in context: A094643 A094593 A327814 * A336434 A007738 A186520
KEYWORD
nonn
AUTHOR
EXTENSIONS
Renamed, edited and checked by R. J. Mathar, Mar 28 2011.
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)