Exemplo n.º 1
0
        public void Solution()
        {
            /*
             * Find the sum of all positive integers n not exceeding 100 000 000
             *  such that for every divisor d of n, d+n/d is prime.
             */

            var sut = new E357PrimeGeneratingIntegers(Max: 100000000);

            Assert.Equal(-1, sut.GetSumOfAllPositiveIntegers());

            /*
             *
             *
             */
        }