Skip to content

Instantly share code, notes, and snippets.

View KeelyHill's full-sized avatar

Keely Hill KeelyHill

View GitHub Profile

Keybase proof

I hereby claim:

  • I am keelyhill on github.
  • I am keelyhill (https://keybase.io/keelyhill) on keybase.
  • I have a public key whose fingerprint is 2E0E 0630 74EE 17D7 5CE7 0B2B 0F81 0671 21FF 2105

To claim this, I am signing this object:

@KeelyHill
KeelyHill / Brady Numbers Method.py
Last active August 29, 2015 14:06
A python method for generating the Brady Number Sequence
def printBradyNums(amount):
def bradyNum(n):
cur, old, i = 4261, 2308, 0
while (i < n):
cur, old, i = cur+old, cur, i+1
return cur
print 2308
for i in range(amount):
print(bradyNum(i))