I saw this and wanted to participate. have not check it, and there may be overflow issues function recurseFib n if n <= 2 then return 1 return recurseFib( n - 1, n - 2 ) end recurseFib put recurseFib( 211 ) thanks for the quiz