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!)
A325278 Smallest number with adjusted frequency depth n. 13

%I #7 Apr 17 2019 19:09:05

%S 1,2,4,6,12,60,2520,1286485200,35933692027611398678865941374040400000

%N Smallest number with adjusted frequency depth n.

%C The adjusted frequency depth of a positive integer n is 0 if n = 1, and otherwise it is 1 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.

%C Differs from A182857 in having 2 instead of 3.

%t nn=10000;

%t fd[n_]:=Switch[n,1,0,_?PrimeQ,1,_,1+fd[Times@@Prime/@Last/@FactorInteger[n]]];

%t fds=fd/@Range[nn];

%t Sort[Table[Position[fds,x][[1,1]],{x,Union[fds]}]]

%Y A subsequence of A325238.

%Y Cf. A011784, A056239, A112798, A118914, A181819, A181821, A182857, A225485, A323023, A325258, A325272, A325277, A325278, A325280.

%Y 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).

%K nonn

%O 0,2

%A _Gus Wiseman_, Apr 17 2019

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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)