- 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 all natural numbers between 1 and 100, which are divisible by 3.
Given:
Natural numbers divisible by 3.
To do:
We have to find the sum of all natural numbers between 1 and 100, which are divisible by 3.
Solution:
Natural numbers between 1 and 100 which are divisible by 3 are \( 3,6,9, \ldots, 99 \).
The sequence is in A.P.
Here,
\( a=3 \) and \( d=6-3=3 \) \( l=99 \)
We know that,
$l=a+(n-1) d$
$\Rightarrow 99=3+(n-1) \times 3$
$\Rightarrow 99=3+3 n-3$
$\Rightarrow 99=3 n$
$\Rightarrow n=\frac{99}{3}=33$
$\therefore n=33$
$\mathrm{S}_{n}=\frac{n}{2}[2 a+(n-1) d]$
$=\frac{33}{2}[2 \times 3+(33-1) \times 3]$
$=\frac{33}{2}[6+32 \times 3]$
$=\frac{33}{2}(102)$
$=33 \times 51$
$=1683$
The sum of all natural numbers between 1 and 100 divisible by 3 is $1683$.
- Related Articles
- Find the sum of all 3-digit natural numbers which are divisible by 13.
- Find the sum of all natural numbers that are less than 100 and divisible by 4.
- Find the sum of all integers between 100 and 550, which are divisible by 9.
- Find the sum of all integers between 100 and 550 which are not divisible by 9.
- Find the sum of all 2-digit natural numbers divisible by 4.
- Find the number of numbers which are divisible by $7$ between $100$ and $1000$.
- Find the number of all three digit natural numbers which are divisible by 9.
- Find the sum of all 3-digit natural numbers, which are multiples of 11.
- Show that the sum of all odd integers between 1 and 1000 which are divisible by 3 is 83667.
- Find the sum of all integers between 50 and 500, which are divisible by 7.
- Sum of first N natural numbers which are divisible by X or Y
- Find the number of natural numbers between 101 and 999 which are divisible by both 2 and 5.
- Sum of first N natural numbers which are divisible by 2 and 7 in C++
- Find the sum of the integers between 100 and 200 that are divisible by 9
- Find the sum of all odd numbers between 100 and 200.

Advertisements