login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A165424 a(1) = 1, a(2) = 6, a(n) = product of the previous terms for n >= 3. 5
1, 6, 6, 36, 1296, 1679616, 2821109907456, 7958661109946400884391936, 63340286662973277706162286946811886609896461828096 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(1) = 1, a(2) = 6, a(n) = Product_{i=1..n-1} a(i), n >= 3.
a(1) = 1, a(2) = 6, a(n) = A000400(2^(n-3)) = 6^(2^(n-3)), n >= 3.
a(1) = 1, a(2) = 6, a(3) = 6, a(n) = (a(n-1))^2, n >= 4.
MATHEMATICA
a[1]:= 1; a[2]:= 6; a[n_]:= Product[a[j], {j, 1, n-1}]; Table[a[n], {n, 1, 12}] (* G. C. Greubel, Oct 19 2018 *)
PROG
(PARI) {a(n) = if(n==1, 1, if(n==2, 6, prod(j=1, n-1, a(j))))};
for(n=1, 10, print1(a(n), ", ")) \\ G. C. Greubel, Oct 19 2018
CROSSREFS
See A173501 for another version. - N. J. A. Sloane, Feb 23 2010
Sequence in context: A222340 A215270 A203057 * A244957 A186982 A196075
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Sep 17 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)