A362888 a(1) = 1, a(n) = (3*k + 1)*(6*k + 1)*(8*k + 1), where k = Product_{i=1..n-1} a(i).
1, 252, 2310152797, 28410981127871160285705816883937448685
Offset: 1
Keywords
References
- W. Sierpinski, 250 Problems in Elementary Number Theory. New York: American Elsevier, 1970. Problem #43.
Programs
-
Mathematica
a[1]=1; a[n_]:=Module[{k=Product[a[i],{i,1,n-1}]},(3*k+1)*(6*k+1)*(8*k+1)]; a/@Range[5]
Formula
a(1) = 1, a(n) = (3*k + 1)*(6*k + 1)*(8*k + 1), where k = Product_{i=1..n-1} a(i).
Comments