DSPython  00.03.03 — 25 juin 2012
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Paquetages | Fonctions | Variables
Référence du fichier natural.py

Naturels : fonctions arithmétiques. Plus de détails...

Aller au code source de ce fichier.

Paquetages

namespace  DSPython.natural
 Naturels : fonctions arithmétiques.

Fonctions

def DSPython.natural.bin
 n en binaire dans un string
def DSPython.natural.binom
 Coefficient binomial de n et k.
def DSPython.natural.bit
 Le bit d'indice i de n vaut 1 ?
def DSPython.natural.bitset
 n avec son bit d'indice i à b
def DSPython.natural.bitset0
 n avec son bit d'indice i à 0
def DSPython.natural.bitset1
 n avec son bit d'indice i à 1
def DSPython.natural.coprime_is
 m et n sont premiers entre eux ?
def DSPython.natural.distance_dominici
 Distance de Dominici.
def DSPython.natural.divisors
 Liste des diviseurs de n.
def DSPython.natural.divisors_cond
 Liste des diviseurs de n restreint à la condition cond.
def DSPython.natural.factorial
 n!
def DSPython.natural.falling_factorial_pow
 ke puissance factorielle descendante de n
def DSPython.natural.fibonacci
 Fk
def DSPython.natural.fibonacci2
 (Fk-1, Fk)
def DSPython.natural.fibonacci_is
 Le naturel n est un nombre de Fibonacci ?
def DSPython.natural.fibonacci_to_index
 Indice du nombre de Fibonacci correspondant au naturel n, ou None.
def DSPython.natural.gcd
 PGCD de m et n (Plus Grand Commun Diviseur/ Greatest Common Divisor)
def DSPython.natural.lcm
 PPCM de m et n (Plus Petit Commun Multiple/ Least Common Multiple)
def DSPython.natural.lg
 lg(n) == log2(n) == nbbits(n) - 1 == l'indice du dernier bit à 1 de n     (n != 0)
def DSPython.natural.lucas
 Lk
def DSPython.natural.lucas2
 (Lk-1, Lk)
def DSPython.natural.lucas_is
 Le naturel n est un nombre de Lucas ?
def DSPython.natural.lucas_to_index
 Indice du nombre de Lucas correspondant au naturel n, ou None.
def DSPython.natural.mersenne
 Mk
def DSPython.natural.mersenne_to_index
 Indice du nombre de Mersenne correspondant au naturel n, ou None.
def DSPython.natural.mertens
 Fonction de Mertens.
def DSPython.natural.nbbits0
 Nombre de bits à 0 de n.
def DSPython.natural.nbbits1
 Nombre de bits à 1 de n.
def DSPython.natural.nbbits
 Nombre de bits de n.
def DSPython.natural.nfp
 Produit des facteurs non communs de m et n (Not common Factors Product)
def DSPython.natural.nontotatives
 Liste des nontotatives de n.
def DSPython.natural.nontotient
 Nontotient de n.
def DSPython.natural.polygonal
 Nombre polygonal à k côtés de n.
def DSPython.natural.pow2
 2k
def DSPython.natural.pow3
 3k
def DSPython.natural.prime_is
 n est premier ?
def DSPython.natural.pyramidal
 Nombre pyramidal à c côtés de n.
def DSPython.natural.rising_factorial_pow
 ke puissance factorielle montante de n
def DSPython.natural.rscan1
 Indice du dernier bit à 1 de, n == nbbits(n) - 1 ou None.
def DSPython.natural.scan0
 Indice du premier bit à 0 de n.
def DSPython.natural.scan1
 Indice du premier bit à 1 de n, ou None.
def DSPython.natural.totatives
 Liste des totatives de n.
def DSPython.natural.totient
 Totient de n (fonction phi, indicatrice d'Euler)
def DSPython.natural.unitarydivisors
 Liste des diviseurs unitaires de n.

Variables

string DSPython.natural.VERSION = 'natural --- 2010 April 12'
 Date du dernier changement pour ce module.

Description détaillée

Naturels : fonctions arithmétiques.

Définition dans le fichier natural.py.