answersLogoWhite

0

n

n+1

n+2

n+3

n+4

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the next five terms in the pattern 3461018?

A single number, such as 3461018, does not make a pattern.


Folder boy in megaman battle network 3?

He's at the top of HadesIsle, accessible from the outside, only during N1. There are five questions, which are relatively easy. To make life easier, save before starting his quiz, and through trial and error you'll get the N1 FolderA, which is widely regarded as the best N1 ExtraFolder for the N1 quarterfinals.


How are squares and square roots related?

They are reverse operations, in the sense that if y is the square of x then x is a square root of y. Remember though, that in the above scenario, -x is also a square root of y.


Codings for coprime number in c?

#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }


What is the pmf of trinomial distribution?

P(x=n1,y=n2) = (n!/n1!*n2!*(n-n1-n2)) * p1^n1*p2^n2*(1-p1-p2) where n1,n2=0,1,2,....n n1+n2<=n


What is the value of the expression of n1?

the value of the exponent n1


What is the value of the expression n1?

the value of the exponent n1


Find LCM and HCF of two given number by using for loop in c?

#include<stdio.h> int main(){ int n1,n2; printf("\nEnter two numbers:"); scanf("%d %d",&n1,&n2); while(n1!=n2){ if(n1>=n2-1) n1=n1-n2; else n2=n2-n1; } printf("\nGCD=%d",n1); return 0; }


The first five terms of a certain sequence are 2 5 10 17 and 26 What is the next term?

37


What does the acronym ESKOM stand for?

Electricity supply commission of south afirca


How can you create calculator in computer language cpp?

void main() { int i; float n1,n2; abc: printf("Enter two nos "); scanf("%f%f",&n1,&n2); printf("\n %f + %f = %f " ,n1,n2,n1+n2); printf("\n %f - %f = %f " ,n1,n2,n1-n2); printf("\n %f x %f = %f " ,n1,n2,n1*n2); printf("\n %f / %f = %f " ,n1,n2,n1/n2); printf("\npress 5 to make another calculation"); scanf("%d",&i); if (i==5) goto abc; }


What is the sum of the 10 positive integers?

The sum of the first 10 positive integers, using the formula N1 + (N1 + 1) + ... + N2 = N2 * (N2 + 1) / 2 - (N1 - 1) * N1 / 2 is: 55