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!)
A217370 a(n) = (product of previous terms) * (sum of previous terms), with a(1) = 2, a(2) = 3. 0
2, 3, 30, 6300, 7183890000, 58523836061676932100000000, 27902190435973847782838929289594860174185569868010410000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3) = (2+3) * (2*3) = 5*6 = 30.
MATHEMATICA
t = {2, 3}; Do[AppendTo[t, (Times @@ t) Total[t]], {5}]; t (* T. D. Noe, Oct 08 2012 *)
PROG
(Maxima)
a[0]:2$ a[1]:3$ a[n]:=sum(a[i], i, 0, n-1)*(prod(a[i], i, 0, n-1));
makelist(a[n], n, 0, 5); /* Martin Ettl, Oct 04 2012 */
CROSSREFS
Sequence in context: A110351 A326224 A270483 * A088115 A230627 A048986
KEYWORD
nonn
AUTHOR
Jon Perry, Oct 01 2012
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 12 04:45 EDT 2024. Contains 373321 sequences. (Running on oeis4.)