Powers of Two Using Bitshift

Try something like:

  for (int x = 0; x < 6; x++)
  {
    Serial.print(1<<x);
    Serial.print(", ");
  }