OFFSET
2,1
EXAMPLE
a(3)=96 because the difference between (3!)^3=216 and the next smaller factorial 5!=120 is 96.
MATHEMATICA
s={}; m=1; Do[Until[m!>(n!)^n, m++]; AppendTo[s, (n!)^n-(m-1)!], {n, 2, 10}]; s (* James C. McMahon, Oct 26 2024 *)
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Hugo Pfoertner, Sep 25 2006
EXTENSIONS
a(10) from James C. McMahon, Oct 26 2024
STATUS
approved