Con la ayuda del método sympy.sieve.search() , podemos encontrar los índices i, j de los números primos que unen un número dado. Si el número dado es primo entonces i == j .
Sintaxis: sieve.search(n)
Parámetro:
n – Denota el número cuyos índices primos delimitadores se encuentran.Devuelve: Devuelve una tupla que contiene los índices primos delimitadores de n .
Ejemplo 1:
# import sympy from sympy import sieve # Use sieve.search() method i, j = sieve.search(23) print("The bounding prime indices of the number 23 : {}, {}".format(i, j))
Producción:
The bounding prime indices of the number 23 : 9, 9
Ejemplo #2:
# import sympy from sympy import sieve # Use sieve.search() method i, j = sieve.search(25) print("The bounding prime indices of the number 23 : {}, {}".format(i, j))
Producción:
The bounding prime indices of the number 23 : 9, 10
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA