cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A337257 Number of even divisors of n!.

Original entry on oeis.org

0, 0, 1, 2, 6, 12, 24, 48, 84, 140, 240, 480, 720, 1440, 2376, 3696, 5040, 10080, 13824, 27648, 38880, 57600, 91200, 182400, 232320, 325248, 510048, 649152, 882000, 1764000, 2246400, 4492800, 5356800, 7618560, 11796480, 15925248
Offset: 0

Views

Author

Gus Wiseman, Aug 23 2020

Keywords

Examples

			The a(2) = 1 through a(5) = 12 divisors:
  2  2  2   2
     6  4   4
        6   6
        8   8
        12  10
        24  12
            20
            24
            30
            40
            60
            120
		

Crossrefs

A336940 is the odd version.
A000265 gives the maximum odd divisor of n.
A001227 counts odd divisors.
A183063 counts even divisors.
Factorial numbers: A000142, A022559, A027423 (divisors), A048656, A071626, A076716 (factorizations), A325272, A325273, A325617, A336414, A336498.

Programs

  • Mathematica
    Table[Length[Select[Divisors[n!],EvenQ]],{n,0,15}]
  • PARI
    a(n) = sumdiv(n!, d, !(d%2)); \\ Michel Marcus, Aug 24 2020

Formula

a(n) = A183063(n!).
A336940(n) + a(n) = A027423(n) = A000005(n!).