How to calculate the series 1 2 3 6 9 18 27 54 81 162 243 ... N in C#

2 Answers

0 votes
// 1 2 3 6 9 18 27 54 81 162 243 ... N 
  
// (1) (2) 1 * 3 (3) 2 * 3 (6) : 3 * 3 (9) 6 * 3 (18) :
// 9 * 3 (27) 18 * 3 (54) : 27 * 3 (81) 54 * 3 (162) :
// 81 * 3 (243)

using System;

class Program
{
    static void Main() {
        int a = 1, b = 2, total = 11;
      
        Console.Write("{0} {1} ", a, b);
      
        for (int i = 3; i <= total; i++) {
            if (i % 2 == 1) {
                a = a * 3;
                Console.Write("{0} ", a);
            }
            else {
                b = b * 3;
                Console.Write("{0} ", b);
            }
        }

    }
}



 
  
/*
run:
  
1 2 3 6 9 18 27 54 81 162 243 
  
*/

 



answered Mar 30, 2022 by avibootz
0 votes
// 1 2 3 6 9 18 27 54 81 162 243 ... N 
 
// (1) 1 + 1 (2) : 1 + 2 (3) : 3 + 3 (6) : 3 + 6 (9) :
// 9 + 9 (18) : 9 + 18 (27) : 27 + 27 (54) : 27 + 54 (81) :
// 81 + 81 (162) : 81 + 162 (243)

using System;

class Program
{
    static void Main() {
        int a = 1, b = 0, total = 11;
 
        for (int i = 1; i <= total; i++) {
            if (i % 2 == 1) {
                b = a + a;
                Console.Write("{0} ", a);
            }
            else {
                a = a + b;
                Console.Write("{0} ", b);
            }
        }
        
    }
}
 
 
 
 
 
/*
run:
 
1 2 3 6 9 18 27 54 81 162 243 
 
*/

 



answered Mar 30, 2022 by avibootz

Related questions

1 answer 212 views
2 answers 244 views
2 answers 229 views
2 answers 227 views
2 answers 287 views
1 answer 193 views
...