Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matuu/primo_circular
Primo Circular
https://github.com/matuu/primo_circular
Last synced: about 1 month ago
JSON representation
Primo Circular
- Host: GitHub
- URL: https://github.com/matuu/primo_circular
- Owner: matuu
- License: gpl-2.0
- Created: 2015-09-23T19:33:46.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-27T16:28:05.000Z (about 9 years ago)
- Last Synced: 2023-08-03T21:54:26.299Z (over 1 year ago)
- Language: Python
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cálculo de Primos Circulares
Al número 197 se lo llama “primo circular“ porque todas las rotaciones de sus dígitos: 197, 971 y 719 son a su vez números primos.
Este script encuentra los primos circulares menores a un número dado.
## Modo de uso
Ejecutar el archivo primo_cir.py con `python 2` pasando como argumento un número natural. Este número será el límite superior de la búsqueda.
python2 primo_cir.py 100000
Salida:[3, 7, 11, 13, 17, 31, 37, 71, 73, 79, 97, 113, 131, 197, 199, 311, 337, 373, 719, 733, 919, 971, 991, 1193, 1931, 3119, 3779, 7793, 7937, 9311, 9377, 11939, 19391, 19937, 37199, 39119, 71993, 91193, 93719, 93911, 99371]