A325225 Lesser of the number of prime factors of n counted with multiplicity and the maximum prime index of n.
0, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 2, 1, 2, 2, 1, 1, 2, 1, 3, 2, 2, 1, 2, 2, 2, 2, 3, 1, 3, 1, 1, 2, 2, 2, 2, 1, 2, 2, 3, 1, 3, 1, 3, 3, 2, 1, 2, 2, 3, 2, 3, 1, 2, 2, 4, 2, 2, 1, 3, 1, 2, 3, 1, 2, 3, 1, 3, 2, 3, 1, 2, 1, 2, 3, 3, 2, 3, 1, 3, 2, 2, 1, 4, 2, 2, 2, 4, 1, 3, 2, 3, 2, 2, 2, 2, 1, 3, 3, 3, 1, 3, 1, 4, 3
Offset: 1
Examples
88 has 4 prime indices {1,1,1,5}, the maximum of which is 5, so a(88) = min(4,5) = 4.
Links
- Antti Karttunen, Table of n, a(n) for n = 1..65537
- FindStat, St000533: The maximal number of non-attacking rooks on a Ferrers shape
Crossrefs
Programs
-
Mathematica
Table[Min[PrimeOmega[n],PrimePi[FactorInteger[n][[-1,1]]]],{n,100}]
-
PARI
A061395(n) = if(1==n, 0, primepi(vecmax(factor(n)[, 1]))); A325225(n) = min(bigomega(n), A061395(n)); \\ Antti Karttunen, Apr 14 2019
Extensions
More terms from Antti Karttunen, Apr 14 2019
Comments