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

A182921
Sum of exponents in prime-power factorization of the swinging factorial (A056040) n$ = n!/floor(n/2)!^2; also bigomega(n$).
1
0, 0, 1, 2, 2, 3, 3, 4, 3, 5, 5, 6, 5, 6, 6, 8, 6, 7, 6, 7, 6, 8, 8, 9, 7, 9, 9, 12, 11, 12, 11, 12, 9, 11, 11, 13, 11, 12, 12, 14, 12, 13, 12, 13, 12, 15, 15, 16, 13, 15, 14, 16, 15, 16, 14, 16, 14, 16, 16, 17, 15, 16, 16, 19, 15
OFFSET
0,4
EXAMPLE
16$ = 2.3.3.5.11.13. Thus a(16) = 6.
MAPLE
A056040 := n -> n! / iquo(n, 2)!^2;
A182921 := n -> numtheory[bigomega](A056040(n)): seq(A182921(i), i=0..70);
MATHEMATICA
a[n_] := PrimeOmega[n!/Quotient[n, 2]!^2];
Table[a[n], {n, 0, 64}] (* Jean-François Alcover, Jun 18 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Mar 14 2011
STATUS
approved