summaryrefslogtreecommitdiff
path: root/progs/a532.py
blob: dc8e81701a704476189fdb75347c00e1d561452d (plain)
1
2
3
4
5
6
7
8
9
10
def get_pell(n): 
	if (n <= 2): 
		return n 
	a = 1
	b = 2
	for i in range(3, n+1): 
		c = 2 * b + a 
		a = b 
		b = c 
	return b