|
| |
|
|
A100704
|
|
a(n) = (a(n-1) + a(n-2)) * a(n-1) * a(n-2) with a(0)=1 and a(1)=1
|
|
0
| | |
|
|
|
OFFSET
| 0,3
|
|
|
COMMENTS
| The next term is too large to include.
Essentially the same as A066091. - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Sep 02 2008
|
|
|
EXAMPLE
| (1 + 1) * 1*1 = 2
(1 + 2) * 1*2 = 6
|
|
|
MAPLE
| a[0]:=1: a[1]:=1: for n from 2 to 9 do a[n]:= (a[n-1]+a[n-2])*a[n-1]*a[n-2] od: seq(a[n], n=0..9); (Deutsch)
|
|
|
CROSSREFS
| Cf. A063896.
Sequence in context: A007870 A081992 A066091 * A123257 A054247 A099790
Adjacent sequences: A100701 A100702 A100703 * A100705 A100706 A100707
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Parthasarathy Nambi (PachaNambi(AT)yahoo.com), Dec 09 2004
|
|
|
EXTENSIONS
| More terms from Emeric Deutsch (deutsch(AT)duke.poly.edu), Dec 23 2004
|
| |
|
|