Advertisement
Guest User

Prime

a guest
Apr 9th, 2017
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main()
  6. {
  7. int input = int.Parse(Console.ReadLine());
  8.  
  9. for (int i = 1; i <= input; i++)
  10. {
  11. Console.WriteLine(Math.Floor(Math.Pow(1.3063778838630806904686144926026, Math.Pow(3, i))));
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement