About site: Computer Science/Distributed Computing/Projects - Repdigit Prime Problems, The
Return to Computers also Computers
  About site: http://www.freewebs.com/dries5/prime_problems.htm

Title: Computer Science/Distributed Computing/Projects - Repdigit Prime Problems, The Distributed Computing Project aimed towards finding prime numbers of the form n*k. This project uses the software Primeform to test workunits.
Grigni,_Michelangelo Emory University.

Bio1_Online_Biometrics_Publication Articles and research on iris, finger, retina, voice, signature, hand geometry, and face biometrics (issues include identification, verification, pki, privacy, public perception, security, and encrypt

BSplayer Multimedia application with AAC/MP4 support through DirectShow filters like 3ivx, CoreAAC or ffdshow.

Ansasoft Assemblers, compilers, interpreters including engineering software and utilities.

PerlHelp Perl consultants available for hire, including help with script installation and custom programming.

Free_Graphics Buttons, bars, and photos.


  Alexa statistic for http://www.freewebs.com/dries5/prime_problems.htm





Get your Google PageRank






Please visit: http://www.freewebs.com/dries5/prime_problems.htm


  Related sites for http://www.freewebs.com/dries5/prime_problems.htm
    EzMath MathML editor which generates HTML or MathML code. Freeware implementation for Windows 95/NT.
    Cxref Cxref is a C source code cross referencing and documenting program for UNIX, written by Andrew M. Bishop. Cxref makes both html and latex style document.
    Language_list Alphabetical annotated list of programming languages.
    Blue_Hornet_Networks_Inc_ Email and enewsletter marketing solutions provider.
    RFC_0449 Current Flow-Control Scheme for IMPSYS. D.C. Walden. January 1973.
    RFC_1760 The S/KEY One-Time Password System. N. Haller. February 1995.
    Download_Free_Trial Download thousands of freeware, shareware and demo programs for Windows arranged by categories.
    dProduce_Man Integrated accounting and management software designed for the produce industry. Runs on Windows.
    SIGAPP__Applied_Computing Furthers the interests of those creating new computing applications or applying old solutions to new situations.
    CSCI_Software_Systems Contractor billing automatically on AIA documents G701, G702, G703, G701Cma, G702Cma. For Windows 2000, NT, 98, 95 on CD ROM.
    Register_com Offers global domain name registration, Web hosting, do-it-yourself Web site, and email services.
    Yahoo_Groups__Lean_Software_Development Forum with many postings, rising activity.
    Frugal_Brothers Supplier of GFI network security, content security and messaging software, plus email and networking products from Microsoft, eSoft and others.
    van_den_Bergh,_Frans Researcher at South Africa, which is working on some enhancements to the basic Particle Swarm Optimizer
    Particle_Wiki A light PHP/MySQL wiki engine with archived history, search, admin panel and skins (released under proprietary Particle Soft End User Licence).
    John_Wilker Weblog from Adobe ColdFusion and Flex application developer in Colorado.
    Zigzag_Web_Design Offers web design, graphics, search engine and domain name registration, and e-commerce development. Based in Brighton, East Sussex, United Kingdom.
    Linux_code_co-op IBM, NEC, Fujitsu, Hitachi co-operate on corporate Linux code. From The Register. (May 30, 2001)
    LRS_Marketing Offers design, hosting, shopping carts, programming, and promotion. Has a free consultation and newsletter.
    TrafficFile_com Produces detailed statistics including search engine search phrases, unique visitors, page views, top referrering sites, pages, countries, and languages.
This is websites2007.org cache of m/ as retrieved on 2008.08.29 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
The Repdigit Prime Problems This page is mentioned in the distributed computing guide ! The Repdigit Prime Problems In these problems we start with a number (n) and add an number (k) of digits (all the same). We will consider problems in which the digits are placed in front of the number as well as behind the number For example: Numbers (A) of the form: A = n33333 With n = 45: 4533333 Here k = 5 (5 3's) but k be any integer greater or equal to 0 In the example above the number A will always be composite for any value of k ,always divisible by 3. For this reason, n is trivial. There are 4 ways for n or k to be trivial: divisible by 2: k = trivial: ex: 17222222 n = trivial: ex: 77777728 divisible by 5: k = trivial: ex: 125555 n = trivial: ex: 8888888825 divisble by 3: n = trivial: ex: 66666621 divisble by 7: n = trivial: ex: 497777 But there is always a value for n so that no matter how many digits are added, the resulting number will always be composite, even if we neglect trivial values !   What is the smallest such value for these problems ?   It is not very hard to find always composite non-trivial values for n. Such a value for n has a covering set. The number A is always divisible by a number of the covering set, no matter which value for k. I have found the smallest number with no trivial covering sets for every problem. But to prove this is indeed the smallest value, we must find a prime for all smaller non-trivial values of n. This is quite easy for most n, but a few remain open. Finding primes for these n is what this page is about. This project was started on 05/01/2005 You could contribute to solve these problems. Your name will be added if you find a prime for a remaining n. The advantage of these problems is that you can solve some of them without an outragious number of computations.   There are 2 good programs available for download. These programs won't slow down your computer. In fact, you can even choose it's priority! PFGW (fastest program) To download this program, go to here . You must join this group to download the program. Once you've done that. Go to the 'Files' menu in this group and download pfgw. There is a windows version as well as a linux version. Unzip it, go to the directory of the program and create a file named 'input.txt'. In this file, you have to put the expression of the particular problem you want to participate in. If the digits are placed in front of n, the expression is: ABC2 n+(10^$a-1)*10^m*d/9 a: from fill in lower bound to fill in your upperbound m = the number of digits of the n you are searching for. d = the digit that is placed in front of n Example:  You want to search a prime of the form 6666...n with n = 1859, then the expression would be: ABC2 1859+(10^$a-1)*10^4*6/9 a: from lower bound to your upper bound You can check the lower bound in the table below. It doesn't matter how big your upper bound of k is. The bigger it is, the longer it takes, but it's always ok to stop the process. But you must run through at least 10000 k's. If the digits are placed behind n, the expression is: ABC2 n*10^$a+(10^$a-1)*d/9 a: from fill in lower bound to fill in your upper bound d = the digit that is placed behind n Example: You want to search a prime of the form n...3333 with n = 817, then the expression would be: ABC2 817*10^$a+(10^$a-1)*3/9 a: from lower bound to your upper bound You can check the lower bound in the table below. It doesn't matter how big your upper bound of k is. The bigger it is, the longer it takes, but it's always ok to stop the process. But you must run through at least 10000 k's. Once you've done that, open the main program (winpfgw.exe for windows). Fill in: 'pfgw -f input.txt' And you can start your search for probable primes! Primeform primeform Once downloaded, open primeform Go to Mode: 'Standard' and 'Probable Prime' should be active. Then go to Mode: 'Expression' Here you have to put the expression of the particular problem you want to participate in. If the digits are placed in front of n, the expression is: n + (10^k-1)*d*10^m/9 m = the number of digits of the n you are searching for. d = the digit that is placed in front of n Example:  You want to search a prime of the form 6666...n with n = 1859, then the formula would be: n + (10^k-1)*6*10^4/9   If the digits are placed behind n, the expression is: n*10^k+(10^k-1)*d/9 d = the digit that is placed behind n Example: You want to search a prime of the form n...3333 with n = 817, then the formula would be: n*10^k+(10^k-1)*3/9 Once you've done that, all you have to do is fill in the value of n and k You will be searching for 1 value of n so if n = 817 then For n = 817 To 817 You will be searching for values of k, starting from the lower bound for k (mentioned below) to a higher value. For k = fill in lower bound To your upper bound It doesn't matter how big your upper bound of k is. The bigger it is, the longer it takes, but it's always ok to stop the process. But you must run through at least 10000 k's. If you have completed the process, then you must tell me how much the lower bound is now. You can start your search for probable primes. If you found a probable prime then tell me right away and you can stop your search immidiately for that specific n. A probable prime is very likely to be a prime but there is still a chance that A is a composite number. I will then do a more deterministic search. It is conjectured that only primes can pass this test, if not, the chance a composite number can pass this test is much much smaller than 10^-15 and since we are working with probable primes, it's very likely that none of them is composite. This chance is much smaller than the chance for a hardware error to occur when performing a test. This test performs the Strong Pseudoprimality Test up to a maximum of 25 times, randomly choosing a different basis each time. If at any time A is found to be composite, the algorithm terminates. If A passes all 25 tests, a lucas test will be performed. If the number A is not found to be composite after these tests, I will call this prime a prime :-) But it will be a problem to complete these tests for huge numbers.. If you'd participate, you can choose a remaining n, it will be reserved for you (if it is still free) You can mail to de3s@hotmail.com if you want to reserve or if there are questions left. The values of the remaining n and the lower bounds of k can be found in the table below. The covering sets have been placed between {} Form Smallest Proven n Remaining n Lower bound of k Discoverer: 1111...n 221 {3,7,11,13} Solved / Dries De Clercq 2222...n 187 {3,7,11,13} 99 Solved: Prime for 19151 Dries De Clercq 3333...n 707 {7,11,13,37} Solved / Dries De Clercq 4444...n 407 {3,7,11,37} Solved / Dries De Clercq 5555...n 451 {3,7,11,13} Solved / Dries De Clercq 6666...n 22297 {7,11,13,37} 1859 36500       1919 20000       2051 Solved: Prime for 9664 Dries De Clercq     2123 Solved: Prime for 2237 Dries De Clercq     2321 Solved: Prime for 10953 Dries De Clercq     3817 20000       5533 20000       8497 10043       9757 13533       10841 Solved: Prime for 24218 David Kokales     12359 Solved: Prime for 4104 Dries De Clercq     16511 Solved: Prime for 12449 Dries De Clercq     16687 Solved: Prime for 3653 Dries De Clercq     16867 Solved: Prime for 4026 Dries De Clercq     17083 30000       19063 Solved: Prime for 6685 Dries De Clercq     20669 16750       22127 Solved: Prime for 4588 Patrick Keller 7777...n 4477 {3,11,37} 909 10000       1591 10000       2827 Solved: Prime for 4545 Patrick Keller     3223 Solved: Prime for 3303 Patrick Keller     3293 10000       3513 Solved: Prime for 3058 Patrick Keller 8888...n 121 {3,7,11,13} Solved / Dries De Clercq 9999...n 14927 {7,11,13,37} 1177 Solved: Prime for 3527 Patrick Keller     2587 9137       2873 20000       8593 41000       8659 Solved: Prime for 5668 Fetofs     11791 6130       12263 5000       12901 Solved: Prime for 14024 Dries De Clercq n...1111 38 explained below * Solved /   n...3333 4070 {7,11,13,37} 410 14000 Reserved       817 14800 Reserved       1166 14032 Reserved       2959 Solved: Probable Prime for 6763 Dries De Clercq     3674 Solved: Prime for 16097 Dries De Clercq n...7777 891 {3,11,13,37} 480 Solved: Prime for 11330 Dries De Clercq     851 Probable Prime for 28895 Dries De Clercq n...9999 ** 10175 {7,11,13,37} 1342 Solved: Prime for 29711 Dries De Clercq     1802 40000       1934 40000       3355 Solved: Prime for 13323 Dries De Clercq     4015 Solved: Prime for 3647 Patrick Keller     4420 40000       4477 Solved: Prime for 4817 Patrick Keller     4499 Solved: Prime for 11957 Dries De Clercq     6587 Solved: Prime for 5846 Dries De Clercq     6664 40000       7018 40000       8578 40000   * n...1111 Smallest n: 38 has an infinite covering set, this form has already been investigated here. There might be more n with infinite covering sets in the remaning n but they are thought to be rare. ** n...9999 can be tested with the deterministic N+1 test. if(typeof(urchinTracker)=='function'){_uacct="UA-230305-2";_udn="none";_uff=false;urchinTracker();} _qacct="p-44naSaXtNJt26";quantserve();
 

Distributed

Computing

Project

aimed

towards

finding

prime

numbers

of

the

form

n*k.

This

project

uses

the

software

Primeform

to

test

workunits.

http://www.freewebs.com/dries5/prime_problems.htm

Repdigit Prime Problems, The 2008 August

dvd rental

dvd


Distributed Computing Project aimed towards finding prime numbers of the form n*k. This project uses the software Primeform to test workunits.

Rules




© 2008 Internet Explorer 5+ or Netscape 6+

Recommended Sites: 1. Arts - Business - Computers - Games - Health - Home - Kids and Teens - News - Recreation - Reference - Regional - Science - Shopping - Society - Sports - World Miss Gallery - Top Anime Hentai - DVD rental by mail - Mortgages uk - MPAA - Yugioh - Mortgages - Debt Help
2008-08-29 23:53:27

Copyright 2005, 2006 by Webmaster
Websites is cool :) 159Hotel Florencia - Imprezy Dla Firm - Ogrzewanie - Hotel Krakow - Reception Furniture