document.write( "Question 1066918: Write a recursive rule for the sequence : find the next two terms.
\n" ); document.write( "1,4,4,16,64......
\n" ); document.write( "I know they are multiplying a1xa2 then a2xa3 etc thus next two numbers are 1024 and 65536. But don't understand how to write the rule for this?
\n" ); document.write( "

Algebra.Com's Answer #682137 by rothauserc(4718)\"\" \"About 
You can put this solution on YOUR website!
let a(0) = 1 and a(1) = 4, then
\n" ); document.write( ":
\n" ); document.write( "a(n) = a(n-1) * a(n-2)
\n" ); document.write( ":
\n" ); document.write( "
\n" ); document.write( "
\n" );