A135315 a(n) = 8^n * 7^(n^2).
1, 56, 153664, 20661046784, 136122083613085696, 43944136529148801869643776, 695135330857032999706040305346412544, 538807794445443668301287736683760181725850763264
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..30
Programs
-
Mathematica
Table[8^n*7^(n^2), {n, 0, 10}] (* G. C. Greubel, Oct 09 2016 *)
-
PARI
a(n)=8^n*7^(n^2) \\ Charles R Greathouse IV, Oct 09 2016
Comments