A334767 a(n) = Product_{k=1..n} d(2*k), where d() is the number of divisors function A000005.
2, 6, 24, 96, 384, 2304, 9216, 46080, 276480, 1658880, 6635520, 53084160, 212336640, 1274019840, 10192158720, 61152952320, 244611809280, 2201506283520, 8806025134080, 70448201072640, 563585608581120, 3381513651486720, 13526054605946880
Offset: 1
Keywords
Examples
a(4) = d(2)*d(4)*d(6)*d(8) = 2*3*4*4 = 96.
Programs
-
Mathematica
Rest @ FoldList[Times, 1, DivisorSigma[0, Range[2, 40, 2]]] (* Amiram Eldar, May 10 2020 *)
-
PARI
a(n) = prod(k=1, n, numdiv(2*k)); \\ Michel Marcus, May 10 2020