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!)
A109172 Recursive form of A109845 without a(2)=3. 0
2, 7, 41, 1723, 2967005, 8803121637031, 77494950556354550188857929 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(1)=2, a(n)=a(n-1)^2+(-1)^n*a(n-1)+(-1)^n
MAPLE
a := proc(n) option remember; if n=1 then 2 else a(n-1)^2+(-1)^n*a(n-1)+(-1)^n fi end:
MATHEMATICA
nxt[{n_, a_}]:={n+1, a^2+(-1)^(n+1) a+(-1)^(n+1)}; Transpose[NestList[nxt, {1, 2}, 10]][[2]] (* Harvey P. Dale, Dec 15 2012 *)
CROSSREFS
Cf. A109845.
Sequence in context: A159315 A191601 A265772 * A131682 A366453 A345368
KEYWORD
nonn
AUTHOR
Walter Kehowski, Aug 18 2005
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)