Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #9 Oct 16 2021 06:14:46
%S 1,1,2,2,2,4,24,24,48,48,96,576,576,1152,34560,207360,414720,414720,
%T 829440,174182400,1045094400,2090188800,2090188800,2090188800,
%U 4180377600,25082265600,25082265600,50164531200,1504935936000,3009871872000,18059231232000
%N a(n) = m/A006939(A001221(m)) with m = A347284(n).
%H Michael De Vlieger, <a href="/A347356/b347356.txt">Table of n, a(n) for n = 1..581</a>
%H Michael De Vlieger, <a href="/A347356/a347356.png">Diagram of prime power decompositions of A347284(n)</a> for 2 <= n <= 14, showing a(n) in blue, A006939(A089576(n)) in red, and the number A347284(n) in black.
%F a(n) = A347284(n)/A006939(A089576(n)).
%e Diagram of prime power decomposition of A347284(12) = 2^12 * 3^7 * 5^4 * 7^3 * 11^2 * 13, showing Chernoff number A006939(6) with "x" and "X", A002110(A347354(12)) with "X", and a(12) with "o":
%e 12 o
%e 11 o
%e 10 o
%e 9 o
%e 8 o
%e 7 o o
%e 6 x o
%e 5 x x
%e 4 x x x
%e 3 x x x x
%e 2 x x x x x
%e 1 X X X X X X
%e 2 3 5 7 ...
%e A347284(12) = A006939(6) * a(12)
%e = 5244319080000 * 576
%e = 3020727790080000.
%t Block[{nn = 31, a = {}, b, c, e, i, p}, Array[Set[e[#], 0] &, Floor[2^# If[# <= 4, 1/2, -1 + 2^(7/(3 #))]] &[Ceiling@ Log2@ nn]]; Do[e[1]++; b = {2^e[1]}; c = {e[1]}; Do[If[Last[b] == 1, Break[], i = e[j]; p = Prime[j]; While[p^i < b[[j - 1]], i++]; AppendTo[b, p^(i - 1)]; AppendTo[c, (i - 1)]; If[i > e[j], e[j]++]], {j, 2, k}]; AppendTo[a, If[First[#] == 0, 1, Times @@ MapIndexed[Prime[First[#2]]^#1 &, TakeWhile[#, # > 0 &]]] &[# - Range[Length[#], 1, -1]] &@ If[k > 2, Most@ c, c]], {k, nn}]; a]
%Y Cf. A001221, A006939, A089576, A347284.
%K nonn
%O 1,3
%A _Michael De Vlieger_, Oct 02 2021