answersLogoWhite

0


Best Answer

just don't do the question.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the formula to find n odd number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the formula to find sum of n odd numbers?

The set of odd numbers is an arithmetic sequence. Let say that the sequence has n odd numbers where the first term is a1 and the last one is n. The formula to find the sum on nth terms for an arithmetic sequence is: Sn = (n/2)(a1 + an) or Sn = (n/2)[2a1 + (n - 1)d] where d is the common difference that for odd numbers is 2. Sn = (n/2)(2a1 + 2n - 2)


Write a single line code in C to find a given number is even or odd?

printf ("%d is %s\n", n, n%2 ? "odd": "even");


What is the six greatest odd number?

There is no such number. Given any odd number, n, the number (n + 2) is a greater odd number. You can go on, for ever, finding larger odd numbers.


Turbo c program that will determine if the input is odd or even number?

#include <stdio.h> int main() { printf("Program to find ODD or Even Number\n"); while(1) { int n = 0; printf("\nEnter a number(-1 for Exit): "); scanf("%d",&n); if( n 0) { printf("%d is a EVEN number.\n", n); } else { printf("%d is a ODD number.\n", n); } } return 0; }


What is the sum of the first 600 consecutive odd number?

There is a surprisingly easy formula for this. Sum of n odd numbers = n2 So the sum of the first 600 odd numbers (starting with 1 as the very first odd number) is 6002 = 360000.


What is an odd number minus odd number?

All odd numbers are of the form 2n + 1, where n is an integer.So an odd number minus an odd number is (2n+1) - (2m+1) = 2n -2m = 2(n-m). Both n and m are integers, so while we don't know whether n-m is odd or even, we definitely know that it's an integer and that multiplying it by two cannot possibly give an odd number. So an odd number minus an odd number is an even number. For similar reasons, an odd number plus an odd number is also an even number.


Write c program to find odd or even no?

For any number n you could use * (n % 2 == 0), which would be true for an even number, false for odd For an integer i, a simpler method would be * (i & 1), which would be true for an odd number, false for even


O n is an odd-number function Find O 15 where O n equals 2n - 1?

29


A formula for an odd sum?

2n + 1 where n is an integer.


The sum of four consecutive odd integers is -72 Write an equation to model this situation and find the values of the four integers?

let n = first odd number; n + 2 = 2nd odd number ,etc. n + n+2 + n+4 + n +6 = 4n + 12 = -72 4n = -84 n = -21 -21,-19,-17 and -15


What is the formula to find sum of n even numbers?

Sum = n/2[2Xa1+(n-1)d] where n is last number, a1 is the first number & d is the common difference between the numbers, here d=2 for the even /odd numbers. Sum = n/2 [2Xa1+(n-1)2]


Odd minus even?

Let's do a small experiment with a few numbers to see we can find out.3 - 2 = 1, Odd when the first number is odd and larger than the second number which is even and smaller.5 - 12 = -7, Odd when the first number is odd and smaller than the second number which is even and larger.Based on the Inverse commutative property, switching the first number for an even would yield the same number except it's inverse.(a - b) = c(b - a) = -c2 - 3 = -112 - 5 = 7So it looks that an odd number minus an even number results in an odd number.