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.

A062008 Number of divisors of (n!)!, or A000197.

Original entry on oeis.org

1, 1, 2, 30, 242880, 23565900177211392000, 2773739201349556936377871973938118055565107020522751759201737480601600000000000000
Offset: 0

Views

Author

Jason Earls, Jul 04 2001

Keywords

Crossrefs

Programs

  • Magma
    [NumberOfDivisors(Factorial(Factorial(n))): n in [0..7]]; // Vincenzo Librandi, Nov 09 2014
  • Maple
    with(numtheory): A062008:=n->tau((n!)!): seq(A062008(n), n=0..6); # Wesley Ivan Hurt, Nov 08 2014
  • Mathematica
    Table[DivisorSigma[0, (n!)!], {n, 0, 6}] (* Wesley Ivan Hurt, Nov 08 2014 *)
  • PARI
    for(n=0,6,print(numdiv(n!!)))
    
  • PARI
    { for (n=0, 7, write("b062008.txt", n, " ", numdiv(n!!)) ) } \\ [Harry J. Smith, Jul 29 2009]