A236368 a(n) = 4^(n!) - 3^(n!).
1, 1, 7, 3367, 281192547174175, 1766847064778382532572997586311708102647654387270579226645978663441513375
Offset: 0
Keywords
Examples
a(3) = 4^(3!) - 3^(3!) = 4^6 - 3^6 = 3367.
Programs
-
Mathematica
4^#-3^#&/@(Range[0,5]!) (* Harvey P. Dale, Nov 26 2016 *)
-
PARI
a(n) = 4^(n!) - 3^(n!); \\ Michel Marcus, Jan 23 2014
Comments