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

A064145
a(n) = tau(n!-1) or number of divisors of n!-1.
8
1, 2, 2, 4, 2, 2, 4, 6, 4, 16, 2, 4, 2, 24, 4, 8, 8, 8, 4, 16, 8, 4, 4, 8, 4, 4, 16, 32, 2, 8, 2, 2, 4, 8, 4, 32, 2, 16, 4, 16, 16, 128, 16, 32, 32, 4, 16, 8, 4, 32, 32, 16, 64, 64, 32, 64, 32, 4, 8, 16, 16, 32, 16, 64, 16, 128, 4, 64, 32, 32, 8, 16, 32, 128, 8
OFFSET
2,2
MATHEMATICA
Do[ Print[ DivisorSigma[0, n! - 1]], {n, 2, 40} ]
DivisorSigma[0, Range[2, 80]!-1] (* Harvey P. Dale, Aug 17 2024 *)
PROG
(PARI) { f=1; for (n=2, 100, f*=n; if (n>1, a=numdiv(f - 1), a=0); write("b064145.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 09 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, Sep 11 2001
EXTENSIONS
More terms from Robert G. Wilson v, Oct 04 2001
a(51)-a(76) from Harry J. Smith, Sep 09 2009
Ambiguous term a(1) removed by Max Alekseyev, May 06 2022
STATUS
approved