login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A331295
Number of values of k, 1 <= k <= n, with f(k) = f(n), where f(n) = [A001222(n), A061395(n)].
1
1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 1, 3, 1, 3, 1, 1, 2, 1, 1, 2, 1, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 1, 4, 4, 2, 1, 1, 3, 3, 1, 2, 1, 1, 2, 1, 1, 3, 1, 3, 2, 1, 1, 2, 4, 1, 2, 1, 1, 5, 1, 4, 2, 1, 1, 4, 1, 1, 2, 3, 1, 2, 1, 1, 3, 4, 1, 2, 1, 3, 1, 1, 5, 3, 4, 1, 2, 1, 1, 6
OFFSET
1,9
COMMENTS
Ordinal transform of A331298, or equally, of the ordered pair [A001222(n), A061395(n)].
MATHEMATICA
f[n_] := f[n] = {PrimeOmega[n], PrimePi[FactorInteger[n]][[-1, 1]]};
a[n_] := Count[Array[f, n], f[n]];
Array[a, 105] (* Jean-François Alcover, Jan 10 2022 *)
PROG
(PARI)
up_to = 1001;
ordinal_transform(invec) = { my(om = Map(), outvec = vector(length(invec)), pt); for(i=1, length(invec), if(mapisdefined(om, invec[i]), pt = mapget(om, invec[i]), pt = 0); outvec[i] = (1+pt); mapput(om, invec[i], (1+pt))); outvec; };
A061395(n) = if(1==n, 0, primepi(vecmax(factor(n)[, 1])));
Aux331298(n) = [bigomega(n), A061395(n)];
v331295 = ordinal_transform(vector(up_to, n, Aux331298(n)));
A331295(n) = v331295[n];
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 19 2020
STATUS
approved