#include #include #include #include #include #include #include using namespace std; typedef long long LL; int ans[2005]; LL dp[2005][30][10]; int main() { int t; cin>>t; for(int i=0;i<26;i++) dp[1][i][1]=1; for(int i=2;i<=2000;i++) { for(int x1=0;x1<26;x1++) for(int x2=0;x2<26;x2++) if(x1==x2) { dp[i][x1][2]=(dp[i][x1][2]+dp[i-1][x2][1])%1000000007; dp[i][x1][3]=(dp[i][x1][3]+dp[i-1][x2][2])%1000000007; } else { dp[i][x1][1]=(dp[i][x1][1]+dp[i-1][x2][1]+dp[i-1][x2][2]+dp[i-1][x2][3])%1000000007; } for(int j=0;j<26;j++) ans[i]=(ans[i]+dp[i][j][1]+dp[i][j][2]+dp[i][j][3])%1000000007; } ans[1]=26; while(t--) { int n; scanf("%d",&n); printf("%d\n",ans[n]); } return 0; }