login

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”).

A378630
Numbers that set records in A376567.
1
1, 2, 4, 6, 12, 24, 30, 48, 60, 120, 210, 240, 420, 840, 1680, 3360, 6720, 9240, 13440, 18480, 26880, 36960, 73920, 147840, 240240, 295680, 480480, 591360, 960960, 1921920, 3843840, 7687680, 15375360, 30750720, 32672640, 61501440, 65345280, 123002880, 130690560
OFFSET
1,2
COMMENTS
Numbers n that set records for binomial(bigomega(n)+omega(n), omega(n)), where bigomega = A001222 and omega = A001221.
a(n) is of the form 2^k * P(i), k >= 0, where primorial P = A002110.
Proper subset of A070175.
LINKS
MATHEMATICA
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 *);
r = 0; Reap[Do[If[# > r, r = #; Sow[n]] &@ Binomial[#2 + #1, #1] & @@ {PrimeNu[n], PrimeOmega[n]}, {n, f[10]}] ][[-1, 1]]
KEYWORD
nonn,easy,new
AUTHOR
Michael De Vlieger, Dec 02 2024
STATUS
approved