login
A326111
Numbers requiring 2 central factorizations to reach prime factorization.
3
8, 12, 16, 18, 20, 24, 27, 28, 30, 36, 42, 44, 45, 50, 52, 54, 60, 63, 66, 68, 70, 75, 76, 78, 81, 90, 92, 98, 99, 100, 102, 105, 110, 114, 116, 117, 124, 125, 126, 130, 135, 138, 140, 147, 148, 150, 153, 154, 164, 165, 170, 171, 172, 174, 175, 182, 186, 188
OFFSET
1,1
COMMENTS
Central factorization is defined at A308427. This sequence is row 3 of the array at A308427.
LINKS
EXAMPLE
The 1st central factorization of 8 is 2*4; the 2nd is 2*(2*2), the prime factorization of 8.
MATHEMATICA
f[n_] := Last[Select[Divisors[n], # <= Sqrt[n] &]];
a[1] = 0; a[2] = 0; a[n_] := If[f[n] == 1, 0, 1 + Max[a[f[n]], a[n/f[n]]]];
u = Table[a[n], {n, 1, 1000}];
Flatten[Position[u, 2]] (* A326111 *)
Flatten[Position[u, 3]] (* A326112 *)
Flatten[Position[u, 4]] (* A326113 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 09 2019
STATUS
approved