OFFSET
1,1
LINKS
Max Alekseyev, Table of n, a(n) for n = 1..139
William Gerst, A conjecture on the prime factorization of n!+1, arXiv:1809.07360 [math.GM], 2018.
Hisanori Mishima, Factorizations of many number sequences
FORMULA
a(n) = tau(n!+1).
MATHEMATICA
Do[ Print[ DivisorSigma[0, n! + 1]], {n, 1, 40} ]
PROG
(PARI) a(n) = numdiv(n! + 1); \\ Harry J. Smith, Sep 09 2009
(Python)
from math import factorial
from sympy import divisor_count
def A064144(n): return divisor_count(factorial(n)+1) # Chai Wah Wu, Oct 20 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladeta Jovovic, Sep 11 2001
EXTENSIONS
More terms from Robert G. Wilson v, Oct 04 2001
a(42)-a(64) from Harry J. Smith, Sep 09 2009
Edited by Jon E. Schoenfield, Jun 21 2018
STATUS
approved