OFFSET
0,2
FORMULA
a(n) = n^2*a(n-1)+n. - Vladeta Jovovic, Apr 13 2003
For n>0, a(n) = floor((n!)^2 * (1 + I(1,2))), where I(n,x) is the modified Bessel function of the first kind. The error term erased by the floor is less than 1/n. - Mikhail Lavrov, Mar 02 2025
PROG
(PARI) a(n) = (n!)^2 * (1 + sum(k=0, n-1, 1/((k+1)*(k!)^2))); \\ Michel Marcus, Mar 02 2025
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Brian Wallace (wallacebrianedward(AT)yahoo.co.uk), May 18 2001
EXTENSIONS
Corrected and extended by Matthew Conroy, May 22 2001
More terms from Michel Marcus, Mar 02 2025
STATUS
approved
