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

A064032
Product of unitary divisors of binomial(n, floor(n/2)).
0
1, 2, 3, 36, 100, 400, 1225, 24010000, 252047376, 4032758016, 2075562447064149770496, 531343986448422341246976, 75186222935463997063888896, 19247673071478783248355557376, 2940278105018015412903875390625, 566574142904620264536665169363475932852029446342410000000000000000
OFFSET
1,2
FORMULA
a(n) = A061537(A001405(n)). - Amiram Eldar, Jul 22 2024
MATHEMATICA
f[n_] := n^(2^(PrimeNu[n]-1)); Table[f[Binomial[n, Floor[n/2]]], {n, 1, 20}] (* Amiram Eldar, Jul 22 2024 *)
PROG
(PARI) a(n) = apply(x -> x^(2^(omega(x)-1)), binomial(n, n\2)); \\ Amiram Eldar, Jul 22 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Sep 13 2001
EXTENSIONS
a(15)-a(16) from Amiram Eldar, Jul 22 2024
STATUS
approved