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!)
A165427 a(1) = 1, a(2) = 9, a(n) = product of the previous terms for n >= 3. 3
1, 9, 9, 81, 6561, 43046721, 1853020188851841, 3433683820292512484657849089281, 11790184577738583171520872861412518665678211592275841109096961 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(1) = 1, a(2) = 9, a(n) = Product_{i = 1..n-1} a(i), n >= 3.
a(1) = 1, a(2) = 9, a(n) = A001019(2^(n-3)) = 9^(2^(n-3)), n >= 3.
a(1) = 1, a(2) = 9, a(3) = 9, a(n) = (a(n-1))^2, n >= 4.
a(n) = A011764(n-2), n > 2. - R. J. Mathar, Sep 20 2009
MATHEMATICA
a[1]:= 1; a[2]:= 9; 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, 9, prod(j=1, n-1, a(j))))};
for(n=1, 10, print1(a(n), ", ")) \\ G. C. Greubel, Oct 19 2018
CROSSREFS
Sequence in context: A038299 A323210 A215272 * A050683 A210095 A092548
KEYWORD
nonn,easy
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)