Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

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 182 views
2 answers 217 views
2 answers 204 views
2 answers 207 views
2 answers 268 views
1 answer 171 views
...