- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find the sum of the first 40 positive integers divisible by 6.
Given:
First 40 positive integers divisible by 6.
To do:
We have to find the sum of the first 40 positive integers divisible by 6.
Solution:
First 40 multiples of 6 are $6,12,18,24, \ldots, 240$
Here,
$a=6, d=6$ and $l=240$
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$\mathrm{S}_{40}=\frac{40}{2}[2 \times 6+(40-1) \times 6]$
$=20[12+39 \times 6]$
$=20[12+234]$ $=20 \times 246$
$=4920$
The sum of the first 40 positive integers divisible by 6 is 4920.
- Related Articles
- Find the sum of the first 40 positive integers divisible by (a) 3 (b) 5 (c) 6.
- Prove that the product of three consecutive positive integers is divisible by 6.
- Find the sum of the integers between 100 and 200 that are divisible by 9
- Prove that the product of two consecutive positive integers is divisible by 2.
- Find the sum of the integers between 100 and 200 that are not divisible by 9
- Find the sum of all integers between 50 and 500, which are divisible by 7.
- Find the sum of all integers between 100 and 550, which are divisible by 9.
- “The product of three consecutive positive integers is divisible by 6”. Is this statement true or false? Justify your answer.
- Three consecutive positive integers are such that the sum of the square of the first and the product of other two is 46, find the integers.
- Three consecutive positive integers are such that the sum of the square of the first and the product of the other two is 46. Find the integers.
- Find the sum of all integers between 100 and 550 which are not divisible by 9.
- The sum of the squares of two consecutive odd positive integers is 394. Find them.
- Prove that one of any three consecutive positive integers must be divisible by 3.
- Find two consecutive positive integers, sum of whose squares is 365.
- Number of Substrings divisible by 6 in a String of Integers in C++

Advertisements