A079286 a(n) = (3^n)! - (2^n)!.
0, 4, 362856, 10888869450418352160767959680
Offset: 0
Links
- Amiram Eldar, Table of n, a(n) for n = 0..5
Programs
-
Mathematica
Table[(3^n)!-(2^n)!,{n,0,4}] (* Harvey P. Dale, Jan 10 2024 *)
-
PARI
atonfact(n) = {for(x=0, n, y = (3^x)!-(2^x)!; print1(y, ", "));}
Comments