login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A117805 Start with 3. Square the previous term and subtract it. 2
3, 6, 30, 870, 756030, 571580604870, 326704387862983487112030, 106735757048926752040856495274871386126283608870, 11392521832807516835658052968328096177131218666695418950023483907701862019030266123104859068030 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,1

COMMENTS

The next term is too large to include.

a(n)=A005267(n+1)+1. - R. J. Mathar, Apr 22 2007. This is true by induction. - M. F. Hasler, May 04 2007

LINKS

Table of n, a(n) for n=0..8.

FORMULA

a(0) = 3, a(n) = (a(n-1))^2 - a(n-1).

EXAMPLE

Start with 3, 3^2-3 = 6; 6^2-6 = 30 etc

MAPLE

f:=proc(n) option remember; if n=0 then RETURN(3); else RETURN(f(n-1)^2-f(n-1)); fi; end;

MATHEMATICA

k=3; lst={k}; Do[k=k^2-k; AppendTo[lst, k], {n, 9}]; lst [From Vladimir Joseph Stephan Orlovsky, Nov 19 2010]

CROSSREFS

Sequence in context: A061137 A012280 A002164 * A154135 A182274 A103091

Adjacent sequences:  A117802 A117803 A117804 * A117806 A117807 A117808

KEYWORD

easy,nonn

AUTHOR

Jacob Vecht (vecht(AT)alcielo.com), Apr 29 2006

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 25 02:53 EDT 2013. Contains 225634 sequences.