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!)
A058181 Quadratic recurrence a(n) = a(n-1)^2 - a(n-2) for n >= 2 with a(0) = 1 and a(1) = 0. 2
1, 0, -1, 1, 2, 3, 7, 46, 2109, 4447835, 19783236185116, 391376433956083065015485621, 153175513056180249189030531428945090978436751221570525 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
A. V. Aho and N. J. A. Sloane, Some doubly exponential sequences, Fib. Quart. 11 (1973), 429-437.
A. V. Aho and N. J. A. Sloane, Some doubly exponential sequences, Fib. Quart. 11 (1973), 429-437. [See here for the missing page.]
FORMULA
a(n)^2 = a(n+1) + a(n-1), a(-1-n) = a(n).
For n >= 4, a(n) = ceiling(c^(2^n)) with c=1.0303497388742578142745024606710866\
16436302563960998408889321488508667424048981473368773165340730475719244472111...
and c^(1/4) = 1.0075025785879710605024343257517358... - Benoit Cloitre, Apr 16 2007
EXAMPLE
a(6) = a(5)^2 - a(4) = 3^2 - 2 = 7.
MATHEMATICA
Join[{a=1, b=0}, Table[c=b^2-a; a=b; b=c, {n, 13}]] (* Vladimir Joseph Stephan Orlovsky, Jan 18 2011 *)
RecurrenceTable[{a[0]==1, a[1]==0, a[n]==a[n-1]^2 - a[n-2]}, a, {n, 13}] (* Vincenzo Librandi, Nov 11 2012 *)
PROG
(PARI) a(n)=if(n<0, a(-1-n), if(n<2, 1-n, a(n-1)^2-a(n-2))) /* Michael Somos, May 05 2005 */
(Magma) I:=[1, 0]; [n le 2 select I[n] else Self(n-1)^2 - Self(n-2): n in [1..15]]; // G. C. Greubel, Jun 09 2019
(Sage)
def a(n):
if (n==0): return 1
elif (n==1): return 0
else: return a(n-1)^2 - a(n-2)
[a(n) for n in (0..15)] # G. C. Greubel, Jun 09 2019
(GAP) a:=[1, 0];; for n in [3..15] do a[n]:=a[n-1]^2-a[n-2]; od; a; # G. C. Greubel, Jun 09 2019
CROSSREFS
Cf. A058182.
Sequence in context: A343522 A086542 A349893 * A198959 A000231 A090593
KEYWORD
sign
AUTHOR
Henry Bottomley, Nov 15 2000
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 18 13:50 EDT 2024. Contains 371780 sequences. (Running on oeis4.)