Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #6 Dec 06 2024 11:09:59
%S 1,2,4,6,12,24,30,48,60,120,210,240,420,840,1680,3360,6720,9240,13440,
%T 18480,26880,36960,73920,147840,240240,295680,480480,591360,960960,
%U 1921920,3843840,7687680,15375360,30750720,32672640,61501440,65345280,123002880,130690560
%N Numbers that set records in A376567.
%C Numbers n that set records for binomial(bigomega(n)+omega(n), omega(n)), where bigomega = A001222 and omega = A001221.
%C a(n) is of the form 2^k * P(i), k >= 0, where primorial P = A002110.
%C Proper subset of A070175.
%H Michael De Vlieger, <a href="/A378630/b378630.txt">Table of n, a(n) for n = 1..10000</a>
%t f[x_] := Block[{i, k, m, nn, p}, nn = Product[Prime[j], {j, x}]; Set[{k, i, p}, Range[0, 2]]; {1}~Join~Union@ Reap[Until[i > x, While[Set[m, 2^k*p] <= nn, Sow[m]; k++]; k = 0; i++; p *= Prime[i] ] ][[-1, 1]] ] (* generate A070175 *);
%t r = 0; Reap[Do[If[# > r, r = #; Sow[n]] &@ Binomial[#2 + #1, #1] & @@ {PrimeNu[n], PrimeOmega[n]}, {n, f[10]}] ][[-1, 1]]
%Y Cf. A000079, A001221, A001222, A002110, A007947, A070175, A376567.
%K nonn,easy,new
%O 1,2
%A _Michael De Vlieger_, Dec 02 2024