answersLogoWhite

0


Best Answer

just don't do the question.

User Avatar

Wiki User

13y 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)


What is the 119th odd natural number?

The 119th odd natural number can be calculated using the formula (2n-1), where n represents the position of the number in the sequence of odd natural numbers. In this case, when n=119, the 119th odd natural number would be (2*119-1) = 237. Therefore, the 119th odd natural number is 237.


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 78th odd number?

The 78th odd number can be calculated using the formula 2n-1, where n represents the position of the odd number in the sequence. Therefore, for the 78th odd number, n would be 39 since odd numbers occur at every other position. Plugging 39 into the formula, we get 2(39)-1 = 77. Hence, the 78th odd number is 77.


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


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


A formula for an odd sum?

2n + 1 where n is an integer.