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!)
A262089 a(0) = 0, a(1) = 1, a(n) = a(n-2)^2 + a(n-1)^3. 1
0, 1, 1, 2, 9, 733, 393832918, 61085205568458236705261921, 227933478957258798550715296531141857176484963515197706487620785853119292327685 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Homogeneous cubic recurrence relation of order 2 with +1 coefficients.
LINKS
MATHEMATICA
RecurrenceTable[{a[0] == 0, a[1] == 1, a[n]==a[n-1]^3 + a[n-2]^2}, a, {n, 10}] (* Vincenzo Librandi, Sep 11 2015 *)
PROG
(Magma) I:=[0, 1]; [n le 2 select I[n] else Self(n-2)^2 + Self(n-1)^3: n in [1..10]]; // Vincenzo Librandi, Sep 11 2015
CROSSREFS
Cf. A262088.
Sequence in context: A208222 A208225 A208228 * A112961 A114953 A252583
KEYWORD
nonn
AUTHOR
Andrew R. Reiter, Sep 10 2015
EXTENSIONS
Offset changed and terms a(0)-a(1) prepended by Vincenzo Librandi, Sep 11 2015
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 14:23 EDT 2024. Contains 371960 sequences. (Running on oeis4.)