A382437 a(n) = a(n-1)^2 + 4 * a(n-1), with a(0) = 2.
2, 12, 192, 37632, 1416317952, 2005956546822746112, 4023861667741036022825635656102100992, 16191462721115671781777559070120513664958590125499158514329308740975788032
Offset: 0
Keywords
Links
- Paolo Xausa, Table of n, a(n) for n = 0..10
Programs
-
Mathematica
NestList[#*(4 + #) &, 2, 8] (* Paolo Xausa, Apr 01 2025 *)
-
PARI
a(n)=if(n, a(n-1)^2 + 4*a(n-1), 2); vector(8, i, a(i-1))