A279055 Self-convolution of squares of factorial numbers (A001044).
1, 2, 9, 80, 1240, 30240, 1071504, 51996672, 3307723776, 266872320000, 26615381760000, 3214252921651200, 462189467175321600, 78024380924038348800, 15279632043682406400000, 3435553774431004262400000, 879010223384483132866560000, 253916900613208108255150080000
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..253
- Arman Maesumi, Triangle Inscribed-Triangle Picking, arXiv:1804.11007 [math.GM], 2018.
- R. Sprugnoli, Riordan Array Proofs of Identities in Gould's Book.
Programs
-
Mathematica
Table[Sum[(k!*(n-k)!)^2, {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Dec 05 2016 *)
Formula
a(n) = Sum_{i=0..n} (i! * (n-i)!)^2.
a(n) ~ 2*(n!)^2. - Vaclav Kotesovec, Dec 05 2016
Extensions
Definition clarified by Georg Fischer, Feb 21 2023
Comments