cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A325272 Adjusted frequency depth of n!.

This page as a plain text file.
%I A325272 #7 Apr 18 2019 16:55:33
%S A325272 0,1,3,4,5,4,6,6,6,4,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,6,7,
%T A325272 7,7,7,7,6,6,6,6,6,7,7,7,7,7,7,7,6,6,6,6,7,7,7,6,6,6,6,7,7,7,8,7,7,7,
%U A325272 6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7
%N A325272 Adjusted frequency depth of n!.
%C A325272 The adjusted frequency depth of a positive integer n is 0 if n = 1, and otherwise it is one plus the number of times one must apply A181819 to reach a prime number, where A181819(k = p^i*...*q^j) = prime(i)*...*prime(j) = product of primes indexed by the prime exponents of k. For example, 180 has adjusted frequency depth 5 because we have: 180 -> 18 -> 6 -> 4 -> 3.
%F A325272 a(n) = A323014(n!).
%e A325272 Recursively applying A181819 starting with 120 gives 120 -> 20 -> 6 -> 4 -> 3, so a(5) = 5.
%t A325272 fd[n_]:=Switch[n,1,0,_?PrimeQ,1,_,1+fd[Times@@Prime/@Last/@FactorInteger[n]]];
%t A325272 Table[fd[n!],{n,30}]
%Y A325272 a(n) = A001222(A325275(n)).
%Y A325272 Cf. A000142, A006939, A303555, A323023, A325238, A325273, A325274, A325276, A325277.
%Y A325272 Omega-sequence statistics: A001222 (first omega), A001221 (second omega), A071625 (third omega), A323022 (fourth omega), A304465 (second-to-last omega), A182850 or A323014 (length/frequency depth), A325248 (Heinz number), A325249 (sum).
%K A325272 nonn
%O A325272 1,3
%A A325272 _Gus Wiseman_, Apr 18 2019