Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #24 Oct 21 2017 22:05:17
%S 1,1,1,0,1,2,1,0,0,2,1,0,1,1,1,0,1,0,1,0,1,1,1,0,0,2,0,0,1,7,1,0,1,1,
%T 1,0,1,1,1,0,1,1,1,0,0,1,1,0,0,0,2,0,1,0,1,0,1,1,1,0,1,1,0,0,1,6,1,0,
%U 1,2,1,0,1,1,0,0,1,3,1,0,0,1,1,0,1,1,1,0,1,0,1,0,1,1,1,0,1,0,0,0,1,4,1,0,1
%N Number of occurrences of n in A076734.
%C n is squarefree iff a(n)>0, see A077619, A077622.
%C If n is prime, a(n)=1. - _Robert Israel_, Oct 20 2017
%H Antti Karttunen, <a href="/A077618/b077618.txt">Table of n, a(n) for n = 1..30030</a>
%F a(A002110(n)) = A077622(n). - _Antti Karttunen_, Oct 20 2017, after _Reinhard Zumkeller_'s comment in the latter sequence.
%e For n=10, we have exactly two numbers k <= 10 such that A001222(k) = A001222(10) = 2, for which 10 is the least squarefree number >= k, namely 9 (= 3*3) and 10 (= 2*5), thus a(10) = 2. - _Antti Karttunen_, Oct 20 2017
%p N:= 200: # to get a(1)..a(N)
%p M:= map(numtheory:-bigomega, [$1..N]):
%p S:= map(numtheory:-issqrfree, [$1..N]):
%p f:= proc(n) local m,k,t;
%p if not S[n] then return 0 fi;
%p m:= M[n];
%p t:= 1;
%p for k from n-1 to 1 by -1 do
%p if M[k] = m then
%p if S[k] then return t
%p else t:= t+1
%p fi;
%p fi
%p od;
%p t
%p end proc:
%p map(f, [$1..N]); # _Robert Israel_, Oct 20 2017
%t Block[{nn = 120, s, t}, s = KeySelect[KeySort@ PositionIndex@ Array[Which[SquareFreeQ@ #1, #1, #3 < #1, #3, True, Block[{k = #1}, While[Nand[SquareFreeQ[k], PrimeOmega[k] == #2], k++]; k]] & @@ {#, PrimeOmega@ #, Times @@ Prime@ Range@ #} &, 2 nn], # < nn &]; t = ConstantArray[0, nn]; ReplacePart[t, Map[# -> Length@ Lookup[s, #] &, Keys@ s]]] (* _Michael De Vlieger_, Oct 20 2017 *)
%o (PARI) A077618(n) = { my(b = bigomega(n),s=1); if(1==n,n,if(!issquarefree(n),0,k=n-1; while(k > 1,if(bigomega(k)==b,if(issquarefree(k),return(s),s++)); k--; ); (s))); }; \\ _Antti Karttunen_, Oct 20 2017
%o (PARI) first(n) = {my(test = vector(n, i, [bigomega(i), i, issquarefree(i), 1]),
%o biglist = vector(logint(n, 2) + 1)); forstep(i = n, 1, -1, if(test[i][3] == 0,
%o test[i][4] = 0; if(biglist[test[i][1] + 1]!=0, test[biglist[test[i][1] + 1]][4]++)
%o , biglist[test[i][1] + 1] = test[i][2])); vector(n, i, test[i][4])} \\ _David A. Corneth_, Oct 20 2017
%Y Cf. A005117, A076734, A077622.
%K nonn
%O 1,6
%A _Reinhard Zumkeller_, Nov 12 2002
%E Term a(10) corrected by _Antti Karttunen_, Oct 20 2017