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

A034716
Dirichlet convolution of factorials with themselves.
1
1, 4, 12, 52, 240, 1464, 10080, 80736, 725796, 7258080, 79833600, 958006368, 12454041600, 174356602560, 2615348737440, 41845579937856, 711374856192000, 12804747412916160, 243290200817664000, 4865804016367800960, 102181884343418940480, 2248001455555375027200
OFFSET
1,2
LINKS
FORMULA
a(n) ~ 2 * n!. - Vaclav Kotesovec, Jan 28 2019
MATHEMATICA
Table[Sum[d!*(n/d)!, {d, Divisors[n]}], {n, 1, 25}] (* Vaclav Kotesovec, Jan 28 2019 *)
PROG
(PARI) a(n)=sumdiv(n, d, (d!) * (n/d)! ); /* Joerg Arndt, Oct 07 2012 */
CROSSREFS
Sequence in context: A188230 A124006 A215524 * A129841 A277431 A065525
KEYWORD
nonn
STATUS
approved