일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 하합
- python
- 알지오매스
- 구분구적법
- 재귀함수
- 피타고라스 정리
- 시뮬레이션
- 큰수의법칙
- counting sunday
- 작도
- Geogebra
- java
- 상합
- algeomath
- 지오지브라
- 몬테카를로
- 삼각함수의그래프
- 확률실험
- 정오각형
- project euler
- 오일러
- 큰 수의 법칙
- 수학탐구
- 제곱근의뜻
- 블록코딩
- 이항분포
- 파이썬
- 리만합
- 프로젝트 오일러
- 프랙탈
- Today
- Total
목록Project Euler (51)
이경수 선생님의 수학실험실
Problem 51(Prime digit replacements) By replacing the 1st digit of the 2-digit number *3, it turns out that six of the nine possible values: 13, 23, 43, 53, 73, and 83, are all prime. By replacing the 3rd and 4th digits of 56**3 with the same digit, this 5-digit number is the first example having seven primes among the ten generated numbers, yielding the family: 56003, 56113, 56333, 56443, 56663..
Problem 50(Consecutive prime sum) The prime 41, can be written as the sum of six consecutive primes: This is the longest sum of consecutive primes that adds to a prime below one-hundred. The longest sum of consecutive primes below one-thousand that adds to a prime, contains 21 terms, and is equal to 953. Which prime, below one-million, can be written as the sum o..
Problem 49(Prime permutations) The arithmetic sequence, 1487, 4817, 8147, in which each of the terms increases by 3330, is unusual in two ways: (i) each of the three terms are prime, and, (ii) each of the 4-digit numbers are permutations of one another. There are no arithmetic sequences made up of three 1-, 2-, or 3-digit primes, exhibiting this property, but there is one other 4-digit increasin..
Problem 48(Self powers) The series, . Find the last ten digits of the series, . In Python: import time def selfpower(n): product = 1 for i in range(1, n + 1): product = (product * n) % (10 ** 10) return product result = 0 for i in range(1, 1000): result += selfpower(i) result = result % (10 ** 10) print(..
Problem 47(Distinct primes factors) The first two consecutive numbers to have two distinct prime factors are: The first three consecutive numbers to have three distinct prime factors are: . Find the first four consecutive integers to have four distinct prime..
Problem 46(Goldbach's other conjecture) It was proposed by Christian Goldbach that every odd composite number can be written as the sum of a prime and twice a square. It turns out that the conjecture was false. What is the smallest..
Problem 45(Triangular, pentagonal, and hexagonal) Triangle, pentagonal, and hexagonal numbers are generated by the following formulae: Triangle 1, 3, 6, 10, 15, ... Pentagonal 1, 5, 12, 22, 35, ... Hexagonal 1, 6, 15, 28, 45, ... It can be verified that . Find the next triangle number ..
Problem 44(Pentagon numbers) Pentagonal numbers are generated by the formula, . The first ten pentagonal numbers are: It can be seen that . However, their difference, , is not pentagonal. Find the pair of pentagonal numbers, and , for which their s..