#include<iostream> using namespace std; int main(){ long long a=1; for(int i=1;i<=30;i++){ cout<<a<<endl; a=2*a+1; } return 0; }