Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A114793
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A114793 a(1) = a(2) = 1; for n>2, a(n) = a(n-2)^3 + a(n-1)^2. +0
8
1, 1, 2, 5, 33, 1214, 1509733, 2281082919633, 5203342727366374356990526, 27074775538448408469117040958804384971249439965813, 733043470457364306745565389055274337169526356099299839341244874661931850021760795731279812250002545 (list; graph; listen)
OFFSET

1,3

EXAMPLE

a(4) = sum of the cube of a(2) plus the square of a(3) = cube of 1 + the square of 2, resulting in 1 + 4 = 5. THe next term would be a(3)^3 + a(4)^2 = (2^3) + 5^2 = 33 = a(5).

PROGRAM

(Python) Note that N needs to be set. If you set N to 20 the sequence will generate 1, 1, 2, 5 and stop. Set N to 10000 and it goes up to 1214.

a, b = 0, 1

while b < N:

... print b

... a, b = b, a*a*a + b*b

CROSSREFS

Adjacent sequences: A114790 A114791 A114792 this_sequence A114794 A114795 A114796

Sequence in context: A118325 A019037 A019038 this_sequence A027303 A052695 A002665

KEYWORD

nonn

AUTHOR

Stephen T. Rowe (EbolaPox(AT)gmail.com), Feb 18 2006

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified October 15 09:18 EDT 2008. Contains 145015 sequences.


AT&T Labs Research