A188902 Numerator of the base n logarithm of the product of the divisors of n.
1, 1, 3, 1, 2, 1, 2, 3, 2, 1, 3, 1, 2, 2, 5, 1, 3, 1, 3, 2, 2, 1, 4, 3, 2, 2, 3, 1, 4, 1, 3, 2, 2, 2, 9, 1, 2, 2, 4, 1, 4, 1, 3, 3, 2, 1, 5, 3, 3, 2, 3, 1, 4, 2, 4, 2, 2, 1, 6, 1, 2, 3, 7, 2, 4, 1, 3, 2, 4, 1, 6, 1, 2, 3, 3, 2
Offset: 2
Links
- Antti Karttunen, Table of n, a(n) for n = 2..10000
Programs
-
Mathematica
Numerator[Table[FullSimplify[Log[n, Times@@Divisors[n]]], {n, 2, 75}]]
-
PARI
A188902(n) = numerator(numdiv(n)/2); \\ Antti Karttunen, May 27 2017
-
Python
from sympy import divisor_count, Integer def a(n): return (divisor_count(n) / 2).numerator print([a(n) for n in range(2, 51)]) # Indranil Ghosh, May 27 2017
Comments