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!)
A000304 a(n) = a(n-1)*a(n-2). 7
2, 3, 6, 18, 108, 1944, 209952, 408146688, 85691213438976, 34974584955819144511488, 2997014624388697307377363936018956288, 104819342594514896999066634490728502944926883876041385836544 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
A038500(a(n)) = A010098(n-2); for n > 2: A006519(a(n)) = A000301(n-3); A001222(a(n)) = A000045(n-1). - Reinhard Zumkeller, Jul 06 2014
LINKS
Peter G. Anderson, Notes & Extensions for a Remarkable Continued Fraction, Fibonacci Quart. 55 (2017), no. 5, 9-14. Mentions this sequence.
Sergio Falcon, Fibonacci's multiplicative sequence, Int. J. Math. Edu. Sci. Technol. 34-2 (2003), 310-315. [Sergio Falcon, Nov 23 2009]
FORMULA
For n>=4, a(n) = 2^A000045(n-3)*3^A000045(n-2). - Benoit Cloitre, Sep 26 2003
For n > 2: a(n) = A000301(n-3) * A010098(n-2). - Reinhard Zumkeller, Jul 06 2014
MAPLE
A000304 := proc(n) option remember; if n <=3 then n else A000304(n-1)*A000304(n-2); fi; end;
MATHEMATICA
nxt[{a_, b_}]:={b, a*b}; Transpose[NestList[nxt, {2, 3}, 12]][[1]] (* Harvey P. Dale, Nov 16 2014 *)
PROG
(Haskell)
a000304 n = a000304_list !! (n-2)
a000304_list = 2 : 3 : zipWith (*) a000304_list (tail a000304_list)
-- Reinhard Zumkeller, Jul 06 2014
CROSSREFS
Sequence in context: A093468 A185625 A114302 * A000614 A233239 A018290
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Vladimir Joseph Stephan Orlovsky, Feb 17 2010
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 19 16:08 EDT 2024. Contains 371794 sequences. (Running on oeis4.)