OFFSET
0,3
COMMENTS
Used to prove that Sum_{n>=1} 1/A002378(n) = 1. Examining Sum_{n=1..k} 1/A002378(n) gives 1/2, 1/2 + 1/6, 1/2 + 1/6 + 1/12. Simplifying gives 1/2, 8/12, 108/144, where the numerators are this sequence and the denominators are A010790. Therefore we have k!^2*k/k!(k+1)! = k*k!/(k+1)! = k/(k+1), which tends to 1 as k tends to infinity.
FORMULA
a(n) = n!*(n+1)! - n!^2.
a(n) = det(PS(i+2,j+1), 1 <= i,j <= n-1), where PS(n,k) are Legendre-Stirling numbers of the second kind (A071951) and n > 0. [Mircea Merca, Apr 06 2013]
EXAMPLE
a(3) = 3!^2*3 = 36*3 = 108.
PROG
(PARI) for(n=1, 50, print1(n!^2*n", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon Perry, Jul 14 2003
STATUS
approved