Saptarshi-prog / Consecutive-prime-sum-codevita

This repository contains my program for TCS code vita question of consecutive prime sums.

Home Page:https://www.linkedin.com/in/saptarshi-neogi-04461416b/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Consecutive-prime-sum-codevita

This repository contains my program for tcs codevita question of consecutive prime sums.

Some prime numbers can be expressed as a sum of other consecutive prime numbers.

For example 5 = 2 + 3, 17 = 2 + 3 + 5 + 7, 41 = 2 + 3 + 5 + 7 + 11 + 13.

Your task is to find out how many prime numbers which satisfy this property are present in the range 3 to N subject to a constraint that summation should always start with number 2. Write code to find out the number of prime numbers that satisfy the above-mentioned property in a given range.

Input Format:

First line contains a number N

Output Format:

Print the total number of all such prime numbers which are less than or equal to N.

Constraints: 2<N<=12,000,000,000

About

This repository contains my program for TCS code vita question of consecutive prime sums.

https://www.linkedin.com/in/saptarshi-neogi-04461416b/

License:MIT License


Languages

Language:Python 100.0%