A178497 5 followed by A145503.
5, 3, 13, 193, 37633, 1416317953, 2005956546822746113, 4023861667741036022825635656102100993, 16191462721115671781777559070120513664958590125499158514329308740975788033
Offset: 0
Keywords
Programs
-
Mathematica
Clear[a, n]; a[ -1] := 1; a[0] := 5; a[n_] := a[n] = Product[a[i], {i, 0, n - 1}] - 2; Table[a[n], {n, 0, 10}]
Formula
a(n)= ( product_{i=0..n-1} a(i)) -2, n>=1.
a(n) = a(n-1)*( a(n-1)+2 )-2, n>=2. - Vladimir Shevelev, Dec 08 2010
Extensions
Definition simplified by the Assoc. Eds. of the OEIS, Jun 07 2010
Comments