Java Program to Find sum of Series with n-th term as n^2 – (n-1)^2
To find the sum of such series, the Java program is as follows −
Example
Live Demo
public class Demo {
static long my_val = 1000000007;
public static long compute_val(long my_int){
return ((my_int % my_val) * (my_int % my_val)) % my_val;
}
public static void main(String[] args){
long my_int = 45687234;
System.out.println("The computed value is ");
System.out.print(compute_val(my_int));
}
}
Output
The computed value is
335959495
A class named Demo defines a function named ‘compute_val’ that computes and returns the sum of
a specific series. In the main function, the long integer is defined and the function is calling by
passing this integer as the parameter. Relevant output is displayed on the console.
Published on 13-Jul-2020 12:12:51
- Related Questions & Answers
- Python Program for Find sum of Series with the n-th term as n^2 – (n-1)^2
- Find sum of Series with n-th term as n^2 - (n-1)^2 in C++
- C/C++ Program to Find the sum of Series with the n-th term as n^2 – (n-1)^2
- C/C++ Program to Find sum of Series with n-th term as n power of 2 - (n-1) power of 2
- Sum of series 1^2 + 3^2 + 5^2 + . . . + (2*n – 1)^2
- Program to find sum of series 1*2*3 + 2*3*4+ 3*4*5 + . . . + n*(n+1)*(n+2) in C++
- C++ program to find the sum of the series 1 + 1/2^2 + 1/3^3 + …..+ 1/n^n
- C++ Programe to find n-th term in series 1 2 2 3 3 3 4
- Program to find N-th term of series 1, 2, 11, 12, 21… in C++
- Sum of series 1^2 + 3^2 + 5^2 + . . . + (2*n - 1)^2 in C++
- Java Program to find the sum of a Series 1/1! + 2/2! + 3/3! + 4/4! +…….+ n/n!
- Sum of the series 2^0 + 2^1 + 2^2 +...+ 2^n in C++
- Program to find N-th term of series 0, 0, 2, 1, 4, 2, 6, 3, 8…in C++
- Sum of the series 1^1 + 2^2 + 3^3 + ... + n^n using recursion in C++
- Sum of the series Kn + ( K(n-1) * (K-1)1 ) + ( K(n-2) * (K-1)2 ) + ... (K-1)n in C++