A076146 a(1) = 1; a(n) = a(n-1)*prime(a(n-1)).
1, 2, 6, 78, 30966, 11234495766, 3197149582479668022558
Offset: 1
Programs
-
Mathematica
NestList[# Prime@ # &, 1, 6] (* Michael De Vlieger, Aug 30 2016 *)
Extensions
a(7) from Gus Wiseman, Aug 30 2016
Comments