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.

A064144 a(n) is the number of divisors of n!+1.

This page as a plain text file.
%I A064144 #21 Oct 21 2023 01:48:28
%S A064144 2,2,2,3,3,4,3,4,8,4,2,6,4,4,8,32,8,64,4,4,8,8,12,4,4,4,2,4,8,32,16,
%T A064144 16,32,4,32,64,2,4,16,128,2,8,16,8,8,8,16,4,32,32,64,16,16,4,4,16,8,
%U A064144 16,4,16,16,8,32,8
%N A064144 a(n) is the number of divisors of n!+1.
%H A064144 Max Alekseyev, <a href="/A064144/b064144.txt">Table of n, a(n) for n = 1..139</a>
%H A064144 William Gerst, <a href="https://arxiv.org/abs/1809.07360">A conjecture on the prime factorization of n!+1</a>, arXiv:1809.07360 [math.GM], 2018.
%H A064144 Hisanori Mishima, <a href="http://www.asahi-net.or.jp/~KC2H-MSM/mathland/matha1/matha104.htm">Factorizations of many number sequences</a>
%F A064144 a(n) = tau(n!+1).
%t A064144 Do[ Print[ DivisorSigma[0, n! + 1]], {n, 1, 40} ]
%o A064144 (PARI) a(n) = numdiv(n! + 1); \\ _Harry J. Smith_, Sep 09 2009
%o A064144 (Python)
%o A064144 from math import factorial
%o A064144 from sympy import divisor_count
%o A064144 def A064144(n): return divisor_count(factorial(n)+1) # _Chai Wah Wu_, Oct 20 2023
%Y A064144 Cf. A000005, A002583, A027423, A002981, A002982, A064145, A078778, A181764.
%K A064144 nonn
%O A064144 1,1
%A A064144 _Vladeta Jovovic_, Sep 11 2001
%E A064144 More terms from _Robert G. Wilson v_, Oct 04 2001
%E A064144 a(42)-a(64) from _Harry J. Smith_, Sep 09 2009
%E A064144 Edited by _Jon E. Schoenfield_, Jun 21 2018