OFFSET
0,2
REFERENCES
G. Labelle et al., Stirling numbers interpolation using permutations with forbidden subsequences, Discrete Math. 246 (2002), 177-195.
MAPLE
g:= proc(n) option remember; `if` (n=0, 1, (1+add(binomial (n-1, k-1) * g(n-k), k=1..n-1)) * 5) end:
a:= n-> `if`(n<=2, (n+1)!, 24*g(n-3)): seq (a(n), n=0..25); # Sean A. Irvine, Feb 02 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 23 2002
EXTENSIONS
More terms from Sean A. Irvine, Feb 02 2024
STATUS
approved