#include #define MAX 50 long trec ( unsigned int n ) { if (n == 0) return 0; if (n == 1) return 2; return 4*trec(n-1) - 4*trec(n-2) + (2<