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.

A055993 Number of square divisors of n!.

Original entry on oeis.org

1, 1, 1, 2, 2, 6, 6, 8, 12, 30, 30, 36, 36, 72, 96, 128, 128, 180, 180, 300, 300, 600, 600, 864, 1152, 2304, 2688, 4368, 4368, 5376, 5376, 6144, 6144, 13056, 16320, 19440, 19440, 38880, 43200, 48000, 48000, 64000, 64000, 100800, 133056, 278784, 278784
Offset: 1

Views

Author

Labos Elemer, Jul 21 2000

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Count[Divisors[n!], d_ /; IntegerQ@ Sqrt@ d], {n, 30}] (* Michael De Vlieger, Feb 05 2017 *)
  • PARI
    a(n) = sumdiv(n!, d, issquare(d)); \\ Michel Marcus, Dec 26 2013

Formula

a(n) = A046951(n!) = A000005(A055772(n)) = A000005(A000188(A000142(n))).