The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A165426 a(1) = 1, a(2) = 8, a(n) = product of the previous terms for n >= 3. 5
1, 8, 8, 64, 4096, 16777216, 281474976710656, 79228162514264337593543950336, 6277101735386680763835789423207666416102355444464034512896 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(1) = 1, a(2) = 8, a(n) = Product_{i=1..n-1} a(i), n >= 3.
a(1) = 1, a(2) = 8, a(n) = A001018(2^(n-3)) = 8^(2^(n-3)), n >= 3.
a(1) = 1, a(2) = 8, a(3) = 8, a(n) = (a(n-1))^2, n >= 4.
a(n) = 8^A166444(n). [uncovered by sequencedb.net]. - R. J. Mathar, Jun 30 2021
MATHEMATICA
a[1]:= 1; a[2]:= 8; 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, 8, prod(j=1, n-1, a(j))))};
for(n=1, 10, print1(a(n), ", ")) \\ G. C. Greubel, Oct 19 2018
CROSSREFS
Sequence in context: A183819 A215271 A202916 * A341547 A183395 A019216
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 June 10 10:32 EDT 2024. Contains 373264 sequences. (Running on oeis4.)