A135292 a(n) = 5^n * 4^(n^2).
1, 20, 6400, 32768000, 2684354560000, 3518437208883200000, 73786976294838206464000000, 24758800785707605497982484480000000, 132922799578491587290380706028034457600000000
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..40
Programs
-
Mathematica
Table[5^n*4^(n^2), {n, 0, 10}] (* G. C. Greubel, Oct 09 2016 *)
-
PARI
a(n)=5^n*4^(n^2) \\ Charles R Greathouse IV, Oct 09 2016
Comments